diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/leap/util/log.py | 2 |
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 |