summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIsis Lovecruft <isis@torproject.org>2013-01-28 18:02:24 +0000
committerIsis Lovecruft <isis@torproject.org>2013-01-28 18:02:24 +0000
commitdf0d6098761df65f1f67ad247fdf259c262aeb0a (patch)
treeb37d55322eae7b7735e5786a5772188840d031bd
parent2d0170b51a064788eb68af75d5f0d4efb40e386f (diff)
Fixed a missing comma in the logger in util/log.py.
-rw-r--r--src/leap/util/log.py2
1 files changed, 1 insertions, 1 deletions
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