From df0d6098761df65f1f67ad247fdf259c262aeb0a Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Mon, 28 Jan 2013 18:02:24 +0000 Subject: Fixed a missing comma in the logger in util/log.py. --- src/leap/util/log.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/leap/util/log.py b/src/leap/util/log.py index 15db367..ef54605 100644 --- a/src/leap/util/log.py +++ b/src/leap/util/log.py @@ -98,7 +98,7 @@ def msg(msg, *arg, **kwarg): """Log a message at the INFO level.""" print "[*] %s" % msg -def debug(msg *arg, **kwarg): +def debug(msg, *arg, **kwarg): """Log a message at the DEBUG level.""" if config.basic.debug: print "[d] %s" % msg -- cgit v1.2.3