diff --git a/ChangeLog b/ChangeLog index 7f65786ce..f75787417 100644 --- a/ChangeLog +++ b/ChangeLog @@ -12,6 +12,9 @@ ==== GtkUI ==== * Fix #1104, #735 use path.utf-8 if available +==== Console ==== + * Fix #1115 not showing usage for the 'debug' command + ==== Windows ==== * Fix displaying folders in the add torrent dialog diff --git a/deluge/ui/console/commands/debug.py b/deluge/ui/console/commands/debug.py index df1691681..118f9542b 100644 --- a/deluge/ui/console/commands/debug.py +++ b/deluge/ui/console/commands/debug.py @@ -51,7 +51,7 @@ class Command(BaseCommand): elif state == 'off': deluge.log.setLoggerLevel("error") else: - component.get("ConsoleUI").write("{!error!}%s" % usage) + component.get("ConsoleUI").write("{!error!}%s" % self.usage) return defer.succeed(True)