Custom Query (2449 matches)
Results (565 - 567 of 2449)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1518 | WontFix | [win32] If deluged is running, starting classic mode deluge results in unhandled error | ||
| Description |
Start delgued separately and then start deluge with classic mode enabled and a box pops up with the error message below. It doesn't break Deluge, just should be handled so as not to appear. Traceback (most recent call last): File "deluge\ui\gtkui\gtkui.py", line 294, in _on_reactor_start File "deluge\ui\client.py", line 559, in start_classic_mode File "deluge\ui\client.py", line 432, in __init__ File "deluge\core\daemon.py", line 81, in __init__ File "deluge\core\daemon.py", line 71, in process_running File "deluge\core\daemon.py", line 68, in get_proclist File "win32com/client/__init__.py", line 72, in GetObject File "win32com/client/__init__.py", line 87, in Moniker com_error: (-2147023838, 'The service cannot be started, either because it is disabled or because it has no enabled devices associated with it.', None, None) |
|||
| #1528 | Duplicate | unicode char fail | ||
| Description |
downloading a torrent with a special char like: [Torrented org]Adèle E L Enigma Del Faraone 2010 iTALiAN AC3 5 1 BRRip XviD avi will create problems with deluge-console if you call from terminal deluge-console info will show this: Error getting torrent info: [Failure instance: Traceback: <type 'exceptions.UnicodeEncodeError'>: 'ascii' codec can't encode character u'\xe0' in position 30: ordinal not in range(128) /usr/lib/python2.6/dist-packages/twisted/internet/tcp.py:460:doRead /usr/lib/pymodules/python2.6/deluge/ui/client.py:183:dataReceived /usr/lib/python2.6/dist-packages/twisted/internet/defer.py:318:callback /usr/lib/python2.6/dist-packages/twisted/internet/defer.py:424:_startRunCallbacks --- <exception caught here> --- /usr/lib/python2.6/dist-packages/twisted/internet/defer.py:441:_runCallbacks /usr/lib/pymodules/python2.6/deluge/ui/console/commands/info.py:119:on_torrents_status /usr/lib/pymodules/python2.6/deluge/ui/console/commands/info.py:142:show_info /usr/lib/pymodules/python2.6/deluge/ui/console/main.py:273:write ] and the torrent is not show up. with some other chars will not show up anything. |
|||
| #1530 | Fixed | Event handling fails for plugin "AutoAdd" on pref dialog close. (Disconnect on preferences dialog submit) | ||
| Description |
Using deluged and deluge-gtk both 98ca371b15596a2d9ffe120ddb1ed47e62583da2 on "Ubuntu 10.10" This happens when you open and close the prefs dialog while connected to deluged and the "AutoAdd" plugin is enabled. It seems the event "AutoaddOptionsChangedEvent" isn't registered properly. 04:22:00.457 [deluge.ui.gtkui.preferences :813 ][DEBUG ] on_button_ok_clicked
04:22:00.458 [deluge.ui.gtkui.pluginmanager :113 ][DEBUG ] run_on_apply_prefs
04:22:00.459 [deluge.plugin.autoadd.gtkui :330 ][DEBUG ] applying prefs for AutoAdd
04:22:00.486 [twisted :508 ][INFO ] Error In <<class 'twisted.internet.tcp.TLSConnection'> to ('127.0.0.1', 58847) at 97cedcc>
04:22:00.538 [twisted :508 ][ERROR ] Unhandled Error
Traceback (most recent call last):
File "/usr/lib/python2.6/dist-packages/twisted/python/log.py", line 84, in callWithLogger
return callWithContext({"system": lp}, func, *args, **kw)
File "/usr/lib/python2.6/dist-packages/twisted/python/log.py", line 69, in callWithContext
return context.call({ILogContext: newCtx}, func, *args, **kw)
File "/usr/lib/python2.6/dist-packages/twisted/python/context.py", line 59, in callWithContext
return self.currentContext().callWithContext(ctx, func, *args, **kw)
File "/usr/lib/python2.6/dist-packages/twisted/python/context.py", line 37, in callWithContext
return func(*args,**kw)
--- <exception caught here> ---
File "/usr/lib/python2.6/dist-packages/twisted/internet/gtk2reactor.py", line 288, in _doReadOrWrite
why = source.doRead()
File "/usr/lib/python2.6/dist-packages/twisted/internet/tcp.py", line 137, in doRead
return Connection.doRead(self)
File "/usr/lib/python2.6/dist-packages/twisted/internet/tcp.py", line 460, in doRead
return self.protocol.dataReceived(data)
File "/home/<uname>/lib/python/deluge-1.3.900_dev-py2.6.egg/deluge/ui/client.py", line 174, in dataReceived
event = known_events[event_name](*request[2])
exceptions.KeyError: 'AutoaddOptionsChangedEvent'
Traceback (most recent call last):
File "/usr/lib/python2.6/dist-packages/twisted/python/log.py", line 84, in callWithLogger
return callWithContext({"system": lp}, func, *args, **kw)
File "/usr/lib/python2.6/dist-packages/twisted/python/log.py", line 69, in callWithContext
return context.call({ILogContext: newCtx}, func, *args, **kw)
File "/usr/lib/python2.6/dist-packages/twisted/python/context.py", line 59, in callWithContext
return self.currentContext().callWithContext(ctx, func, *args, **kw)
File "/usr/lib/python2.6/dist-packages/twisted/python/context.py", line 37, in callWithContext
return func(*args,**kw)
--- <exception caught here> ---
File "/usr/lib/python2.6/dist-packages/twisted/internet/gtk2reactor.py", line 288, in _doReadOrWrite
why = source.doRead()
File "/usr/lib/python2.6/dist-packages/twisted/internet/tcp.py", line 137, in doRead
return Connection.doRead(self)
File "/usr/lib/python2.6/dist-packages/twisted/internet/tcp.py", line 460, in doRead
return self.protocol.dataReceived(data)
File "/home/<uname>/lib/python/deluge-1.3.900_dev-py2.6.egg/deluge/ui/client.py", line 174, in dataReceived
event = known_events[event_name](*request[2])
exceptions.KeyError: 'AutoaddOptionsChangedEvent'
04:22:00.540 [deluge.ui.client :232 ][INFO ] Connection lost to daemon at 127.0.0.1:58847 reason: 'AutoaddOptionsChangedEvent'
04:22:00.545 [deluge.component :235 ][DEBUG ] Deregistering Component: GtkPlugin.AutoAdd
04:22:00.545 [deluge.pluginmanagerbase :163 ][INFO ] Plugin AutoAdd disabled..
|
|||
