aboutsummaryrefslogtreecommitdiffstats
path: root/muddle.py
diff options
context:
space:
mode:
authorNao Pross <np@0hm.ch>2020-10-23 00:47:12 +0200
committerNao Pross <np@0hm.ch>2020-10-23 00:47:12 +0200
commit56e669fa6f37112f928919198e7f6cec7c3c0f3c (patch)
tree330324ec4cf4458d9a451745494b0ed18125d199 /muddle.py
parentFix config path (expand) error (diff)
downloadMuddle-56e669fa6f37112f928919198e7f6cec7c3c0f3c.tar.gz
Muddle-56e669fa6f37112f928919198e7f6cec7c3c0f3c.zip
Make PEP8 happy
Diffstat (limited to '')
-rw-r--r--muddle.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/muddle.py b/muddle.py
index b4e4311..b1dc7f1 100644
--- a/muddle.py
+++ b/muddle.py
@@ -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',
}
)