Custom Query (2447 matches)
Results (436 - 438 of 2447)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#3185 | Fixed | Console-ui deferred error. | ||
Description |
In the "new" console-ui, pressing 'p' to start preferences shows a deferred error, and the same when delting file, though file gets deleted anyways. I'm on arch-linux, meaning latest stable version of every dep installed. Deluge.log nothing interesting, and deluge-console.log shows this: " 01:09:42.552 [DEBUG ][deluge.ui.console.main :265 ] Setting console mode: TorrentList 01:09:53.661 [DEBUG ][deluge.ui.console.main :265 ] Setting console mode: Preferences 01:09:53.676 [CRITICAL][twisted :154 ] Unhandled error in Deferred: 01:09:53.678 [CRITICAL][deluge.log :93 ] twisted.internet.defer [Failure instance: Traceback: <type 'exceptions.TypeError'>: argument 1 or 3 must be a ch or an int /usr/lib/python2.7/site-packages/deluge/transfer.py:120:_handle_complete_message /usr/lib/python2.7/site-packages/deluge/ui/client.py:127:message_received /usr/lib/python2.7/site-packages/twisted/internet/defer.py:459:callback /usr/lib/python2.7/site-packages/twisted/internet/defer.py:567:_startRunCallbacks --- <exception caught here> --- /usr/lib/python2.7/site-packages/twisted/internet/defer.py:653:_runCallbacks /usr/lib/python2.7/site-packages/deluge/ui/console/modes/preferences/preferences.py:137:on_get_config /usr/lib/python2.7/site-packages/deluge/ui/console/modes/preferences/preferences.py:207:refresh /usr/lib/python2.7/site-packages/deluge/ui/console/modes/preferences/preferences.py:169:_draw_actions ] 01:10:00.500 [ERROR ][deluge.ui.console.modes.basemode :1207] argument 1 or 3 must be a ch or an int Traceback (most recent call last):
TypeError: argument 1 or 3 must be a ch or an int 01:10:04.099 [ERROR ][deluge.ui.console.modes.basemode :1207] argument 1 or 3 must be a ch or an int Traceback (most recent call last):
TypeError: argument 1 or 3 must be a ch or an int " Here's a pic from when deleting a file: https://forum.deluge-torrent.org/download/file.php?id=6448 |
|||
#1925 | Fixed | Console UI exposes autoadd configuration | ||
Description |
deluge/ui/console/modes/preference_panes.py:227 exposes some autoadd plugin configuration, as this functionality used to be built in. Needs to be moved to plugin configuration or properly removed. I have attached a patch to comment it out (allows the preferences view to then be used in the console UI). |
|||
#3582 | Fixed | Console-UI prints deferred-object after commands | ||
Description |
As title, Console-UI always prints deferred object after every non-interactive command e.g.: <Deferred at 0x7fdef49b2770 current result: None> I narrowed culprit down to this commit: https://github.com/deluge-torrent/deluge/commit/ece31cf3cfb2ae277194f82bf35b45ea848f69c4, so started happening from release v2.10. Meanwhile I posted on forum to just change line 16 of e.g. '/usr/lib/python3.10/site-packages/deluge/ui/console/init.py' from: return Console().start() To: Console().start() Thanks in advance! |