We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7660e2e commit 75cab75Copy full SHA for 75cab75
deluge/ui/console/main.py
@@ -138,7 +138,7 @@ def start_ui(self):
138
except ImportError:
139
wrapper = None
140
141
- if deluge.common.windows_check() and not wrapper:
+ if deluge.common.windows_check():
142
print(
143
"""\nDeluge-console does not run in interactive mode on Windows. \n
144
Please use commands from the command line, e.g.:\n
@@ -148,6 +148,7 @@ def start_ui(self):
148
deluge-console.exe "add -p c:\\mytorrents c:\\new.torrent"
149
"""
150
)
151
+ return
152
153
# We don't ever want log output to terminal when running in
154
# interactive mode, so insert a dummy here
0 commit comments