Custom Query (2447 matches)
Results (424 - 426 of 2447)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#2730 | Fixed | dev versions of Deluge not runs with latest setuptools | ||
Description |
I am trying to run deluge 1.3.11.dev0 (taken from git 1.3 stable branch) with libtorrent-1.0.3 on Zyxel NAS (NSA310 kernel-2.6.31.8, armv5tel GNU/Linux, uClibc based system). [ERROR ] 21:30:53 main:237 invalid literal for int() with base 10: 'dev0' Traceback (most recent call last): File "/ffp/lib/python2.7/site-packages/deluge/main.py", line 230, in start_daemon Daemon(options, args) File "/ffp/lib/python2.7/site-packages/deluge/core/daemon.py", line 138, in __init__ self.core = Core(listen_interface=listen_interface) File "/ffp/lib/python2.7/site-packages/deluge/core/core.py", line 83, in __init__ version = [int(value.split("-")[0]) for value in deluge.common.get_version().split(".")] ValueError: invalid literal for int() with base 10: 'dev0' If revert back to older setuptools version 7.0, deluged runs without problem. I have zero python programming knowledge, so looked at how DJango resolved similar issue: https://github.com/django/django/commit/1739ae9edc6e6c07ca20cad36dd15316f18f3f8e Changing row: version = [int(value.split("-")[0]) for value in deluge.common.get_version().split(".")] to version = [int(value.split("-")[0]) for value in deluge.common.get_version().split(".") if value.isdigit()] in core.py, lets me run deluged again with latest setuptools. Don't know, if that is suitable way to solve issue, but it works. I hope to draw attention of deluge devs (Cas potentially) at this small problem. Best rgds, b2 |
|||
#2729 | Fixed | Blocklist plugin interface remains stuck showing "Importing…" when using an empty URL | ||
Description |
When no value is entered into the Blocklist plugin's "URL" field, and then an "Import" button is pressed, the plugin's interface permanently prevents the user from recovering from the failed import. Specifically,
Disabling and re-enabling the plugin from the Plugins preference window has no effect. Nor does quitting and restarting the plugin. This effectively means that if a user clicks "Import" without first entering a value in the URL field, they can never actually use the Blocklist plugin. |
|||
#2726 | Duplicate | column sort setting lost after a few days | ||
Description |
i can add/delete column(s) & sort just fine, but after a few days everything is reset to default IMHO, the cookie should either be set with a super long timeout, or re set the cookie every time the web page is open |