Remove async variable for compatibility

This commit is contained in:
VirtuBox
2019-12-04 14:58:04 +01:00
parent 96f4332dce
commit 732ff51d9f
2 changed files with 3 additions and 3 deletions

View File

@@ -44,7 +44,7 @@ class Log:
"""
Logs debug messages into log file
"""
self.app.log.debug(Log.HEADER + msg + Log.ENDC)
self.app.log.debug(Log.HEADER + msg + Log.ENDC, __name__)
def wait(self, msg, end='\r', log=True):
"""