Fix logger statements having multiple arguments
Some of the instructions have been rendered invalid during the conversion to logger statements... Also performed various stylistic fixes
This commit is contained in:
@@ -50,7 +50,7 @@ def main():
|
||||
return 255
|
||||
|
||||
if isinstance(e.exception, common.EmptyError):
|
||||
logger.debug("EmptyError: %r", str(e.exception))
|
||||
logger.debug("EmptyError: %s", e.exception)
|
||||
logger.critical('could not create encoded file')
|
||||
return 255
|
||||
|
||||
|
||||
Reference in New Issue
Block a user