diff options
author | Nao Pross <np@0hm.ch> | 2020-10-23 00:47:12 +0200 |
---|---|---|
committer | Nao Pross <np@0hm.ch> | 2020-10-23 00:47:12 +0200 |
commit | 56e669fa6f37112f928919198e7f6cec7c3c0f3c (patch) | |
tree | 330324ec4cf4458d9a451745494b0ed18125d199 /muddle.py | |
parent | Fix config path (expand) error (diff) | |
download | Muddle-56e669fa6f37112f928919198e7f6cec7c3c0f3c.tar.gz Muddle-56e669fa6f37112f928919198e7f6cec7c3c0f3c.zip |
Make PEP8 happy
Diffstat (limited to '')
-rw-r--r-- | muddle.py | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -36,14 +36,15 @@ log.setLevel(logging.DEBUG) if args.verbose: cli_handler = colorlog.StreamHandler() cli_handler.setLevel(logging.DEBUG) - cli_formatter = colorlog.ColoredFormatter("%(name)-13s - %(log_color)s%(levelname)-8s%(reset)s: %(message)s", + cli_formatter = colorlog.ColoredFormatter( + "%(name)-13s - %(log_color)s%(levelname)-8s%(reset)s: %(message)s", datefmt=None, reset=True, log_colors={ - 'DEBUG': 'cyan', - 'INFO': 'green', - 'WARNING': 'yellow', - 'ERROR': 'red', + 'DEBUG': 'cyan', + 'INFO': 'green', + 'WARNING': 'yellow', + 'ERROR': 'red', 'CRITICAL': 'red,bg_white', } ) |