Custom Query (2449 matches)
Results (106 - 108 of 2449)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #249 | Fixed | Key error and "global name 'log' is not defined" | ||
| Description |
Don't know what I did to get this, I was about to add torrents and rechecking them. Traceback (most recent call last):
File "/usr/lib64/python2.4/site-packages/deluge/ui/gtkui/systemtray.py", line 157, in _on_get_download_rate
self.download_rate = deluge.common.fsize(download_rate)
File "/usr/lib64/python2.4/site-packages/deluge/common.py", line 264, in fsize
fsize_kb = fsize_b / 1024.0
TypeError: unsupported operand type(s) for /: 'NoneType' and 'float'
Traceback (most recent call last):
File "/usr/lib64/python2.4/site-packages/deluge/ui/gtkui/torrentview.py", line 336, in _on_get_torrents_status
self.update_view()
File "/usr/lib64/python2.4/site-packages/deluge/ui/gtkui/torrentview.py", line 293, in update_view
if torrent_id in status.keys():
AttributeError: 'int' object has no attribute 'keys'
Traceback (most recent call last):
File "/usr/lib64/python2.4/site-packages/deluge/ui/gtkui/peers_tab.py", line 245, in _on_get_torrent_status
for peer in status["peers"]:
KeyError: 'peers'
Traceback (most recent call last):
File "/usr/lib64/python2.4/site-packages/deluge/ui/gtkui/peers_tab.py", line 245, in _on_get_torrent_status
for peer in status["peers"]:
KeyError: 'peers'
Traceback (most recent call last):
File "/usr/lib64/python2.4/site-packages/deluge/ui/gtkui/statistics_tab.py", line 121, in _on_get_torrent_status
log.debug("Unable to get status value: %s", e)
NameError: global name 'log' is not defined
|
|||
| #250 | Fixed | Some problem with recheck | ||
| Description |
Got this using r3188 when doing a forced recheck Traceback (most recent call last):
File "/usr/lib64/python2.4/site-packages/deluge/core/torrentmanager.py", line 480, in force_recheck
torrent.apply_options()
File "/usr/lib64/python2.4/site-packages/deluge/core/torrent.py", line 382, in apply_options
self.handle.get_torrent_info().set_priv(self.private)
AttributeError: 'torrent_info' object has no attribute 'set_priv'
|
|||
| #251 | Fixed | Recursion problem | ||
| Description |
Got this using r3188 when I tried to add some torrents > 25 Traceback (most recent call last):
File "/usr/lib64/python2.4/site-packages/deluge/core/torrentmanager.py", line 646, in on_alert_torrent_paused
self.torrents[torrent_id].set_state("Paused")
File "/usr/lib64/python2.4/site-packages/deluge/core/torrent.py", line 193, in set_state
self.torrentqueue.update_queue()
File "/usr/lib64/python2.4/site-packages/deluge/core/torrentqueue.py", line 81, in update_queue
self.update_order()
File "/usr/lib64/python2.4/site-packages/deluge/core/torrentqueue.py", line 131, in update_order
self.torrents[torrent_id].set_state("Queued")
File "/usr/lib64/python2.4/site-packages/deluge/core/torrent.py", line 193, in set_state
self.torrentqueue.update_queue()
File "/usr/lib64/python2.4/site-packages/deluge/core/torrentqueue.py", line 81, in update_queue
self.update_order()
File "/usr/lib64/python2.4/site-packages/deluge/core/torrentqueue.py", line 131, in update_order
self.torrents[torrent_id].set_state("Queued")
File "/usr/lib64/python2.4/site-packages/deluge/core/torrent.py", line 193, in set_state
self.torrentqueue.update_queue()
File "/usr/lib64/python2.4/site-packages/deluge/core/torrentqueue.py", line 81, in update_queue
self.update_order()
File "/usr/lib64/python2.4/site-packages/deluge/core/torrentqueue.py", line 131, in update_order
self.torrents[torrent_id].set_state("Queued")
File "/usr/lib64/python2.4/site-packages/deluge/core/torrent.py", line 193, in set_state
self.torrentqueue.update_queue()
File "/usr/lib64/python2.4/site-packages/deluge/core/torrentqueue.py", line 81, in update_queue
self.update_order()
File "/usr/lib64/python2.4/site-packages/deluge/core/torrentqueue.py", line 131, in update_order
self.torrents[torrent_id].set_state("Queued")
File "/usr/lib64/python2.4/site-packages/deluge/core/torrent.py", line 193, in set_state
self.torrentqueue.update_queue()
....
<snip ~100 lines of same>
....
File "/usr/lib64/python2.4/site-packages/deluge/core/torrentqueue.py", line 81, in update_queue
self.update_order()
File "/usr/lib64/python2.4/site-packages/deluge/core/torrentqueue.py", line 131, in update_order
self.torrents[torrent_id].set_state("Queued")
File "/usr/lib64/python2.4/site-packages/deluge/core/torrent.py", line 193, in set_state
self.torrentqueue.update_queue()
File "/usr/lib64/python2.4/site-packages/deluge/core/torrentqueue.py", line 81, in update_queue
self.update_order()
File "/usr/lib64/python2.4/site-packages/deluge/core/torrentqueue.py", line 128, in update_order
log.debug("queueing: %s", self.seeding[-num_to_queue:])
File "/usr/lib/python2.4/logging/__init__.py", line 955, in debug
apply(self._log, (DEBUG, msg, args), kwargs)
File "/usr/lib/python2.4/logging/__init__.py", line 1079, in _log
self.handle(record)
File "/usr/lib/python2.4/logging/__init__.py", line 1089, in handle
self.callHandlers(record)
File "/usr/lib/python2.4/logging/__init__.py", line 1126, in callHandlers
hdlr.handle(record)
File "/usr/lib/python2.4/logging/__init__.py", line 640, in handle
self.acquire()
File "/usr/lib/python2.4/logging/__init__.py", line 591, in acquire
self.lock.acquire()
File "/usr/lib/python2.4/threading.py", line 94, in acquire
me = currentThread()
File "/usr/lib/python2.4/threading.py", line 677, in currentThread
return _DummyThread()
RuntimeError: maximum recursion depth exceeded
|
|||
Note:
See TracQuery
for help on using queries.
