diff -u a/main.py b/main.py
|
a
|
b
|
|
| 125 | 125 | else: |
| 126 | 126 | # Interactive |
| 127 | 127 | if deluge.common.windows_check(): |
| 128 | | print( |
| 129 | | """\nDeluge-console does not run in interactive mode on Windows. \n |
| 130 | | Please use commands from the command line, e.g.:\n |
| 131 | | deluge-console.exe help |
| 132 | | deluge-console.exe info |
| 133 | | deluge-console.exe "add --help" |
| 134 | | deluge-console.exe "add -p c:\\mytorrents c:\\new.torrent" |
| 135 | | """ |
| 136 | | ) |
| 137 | | else: |
| 138 | | |
| | 128 | log.debug('Deluge-console experimantal build using windows-curses. Use at your own risk!') |
| | 129 | |
| 139 | 130 | class ConsoleLog(object): |
| 140 | 131 | def write(self, data): |
| 141 | 132 | pass |