From 2deaf64acf3afba168ef85e7dd75578f22b9b2e7 Mon Sep 17 00:00:00 2001 From: Armin Date: Sat, 18 Apr 2015 15:03:47 +0200 Subject: fix: color_logger revert partially Spare code cosmetics (1) to fix SyntaxError: duplicate argument 'section' in function definition --- pyload/Core.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pyload/Core.py') diff --git a/pyload/Core.py b/pyload/Core.py index e6f6fefcb..f723d8366 100755 --- a/pyload/Core.py +++ b/pyload/Core.py @@ -518,7 +518,7 @@ class Core(object): 'CRITICAL': "purple" } - console_frm = colorlog.ColoredFormatter(format=c_fmt, + console_frm = colorlog.ColoredFormatter(fmt=c_fmt, datefmt=date_fmt, log_colors=clr, secondary_log_colors=extra_clr) @@ -596,7 +596,7 @@ class Core(object): if not file_exists and not quiet: if file_created: - #self.log.info( _("%s created") % description ) + #self.log.info( _("%s created") % description ) pass else: if not empty: @@ -674,7 +674,7 @@ def deamon(): try: pid = os.fork() if pid > 0: - # exit from second parent, print eventual PID before + # exit from second parent, print eventual PID before print "Daemon PID %d" % pid sys.exit(0) except OSError, e: @@ -698,7 +698,7 @@ def deamon(): def main(): if "--daemon" in sys.argv: - deamon() + deamon() else: pyload_core = Core() try: -- cgit v1.2.3