Skip to content
This repository has been archived by the owner on Mar 17, 2020. It is now read-only.

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yorch committed Mar 25, 2019
1 parent 7fbaddf commit f47105c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ def output(line, *args):


def debug(line, *args):
debug = getattr(debug, 'debug', False)
if not debug:
debugEnable = getattr(debug, 'debug', False)
if not debugEnable:
return
output(f"DEBUG - {line}", *args)

Expand Down

0 comments on commit f47105c

Please sign in to comment.