summaryrefslogtreecommitdiffstats
path: root/deluge/ui/console/console.py
diff options
context:
space:
mode:
Diffstat (limited to 'deluge/ui/console/console.py')
-rw-r--r--deluge/ui/console/console.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/deluge/ui/console/console.py b/deluge/ui/console/console.py
index 58d31d514..f683c749d 100644
--- a/deluge/ui/console/console.py
+++ b/deluge/ui/console/console.py
@@ -112,9 +112,9 @@ class Console(UI):
)
# To properly print help message for the console commands ( e.g. deluge-console info -h),
# we add a subparser for each command which will trigger the help/usage when given
- from deluge.ui.console.parser import (
+ from deluge.ui.console.parser import ( # import here because (see top)
ConsoleCommandParser,
- ) # import here because (see top)
+ )
self.console_parser = ConsoleCommandParser(
parents=[self.parser],