mirror of https://gitlab.com/pamhyr/pamhyr2
tools: Fix PEP8.
parent
17eb3e8184
commit
dcaa7fafbd
|
|
@ -375,7 +375,10 @@ def parse_command_line(cmd):
|
||||||
word, rest = _parse_next_word(rest)
|
word, rest = _parse_next_word(rest)
|
||||||
words.append(word)
|
words.append(word)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error(f"{parse_command_line}: Failed to parse command line '{cmd}'")
|
logger.error(
|
||||||
|
f"{parse_command_line}: " +
|
||||||
|
f"Failed to parse command line '{cmd}'"
|
||||||
|
)
|
||||||
logger.error(f" exception raise {e}")
|
logger.error(f" exception raise {e}")
|
||||||
return []
|
return []
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue