diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-11-17 15:33:13 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-11-17 15:33:13 +0100 |
commit | 5888fe467a0099f602b219e17239562098ffb892 (patch) | |
tree | 10ec5b4e2d64fa3edff54e0d466972cc72716d02 /pyload/Core.py | |
parent | improved light color config (diff) | |
download | pyload-5888fe467a0099f602b219e17239562098ffb892.tar.xz |
fixed the plugin parser to handle multi line statements
Diffstat (limited to 'pyload/Core.py')
-rw-r--r-- | pyload/Core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/Core.py b/pyload/Core.py index bea47c3e2..abcc328f3 100644 --- a/pyload/Core.py +++ b/pyload/Core.py @@ -537,7 +537,7 @@ class Core(object): 'CRITICAL': 'bg_purple', } elif self.config['log']['console_color'] == "Light": - cfmt = "%(log_color)s%(asctime)s %(levelname)+8s %(message)s" + cfmt = "%(log_color)s%(asctime)s %(levelname)-8s %(message)s" clr = { 'DEBUG': 'cyan', 'WARNING': 'yellow', |