Custom Query (2447 matches)
Results (424 - 426 of 2447)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#294 | Fixed | Error when deleting "auto-download" torrent | ||
Description |
Version is 0.5.9.3 I've accidentaly deleted my "auto download" folder and now deluge doesn't want to start lafontaine@lafontaine-desktop:~$ deluge no existing Deluge session Starting new Deluge session... deluge_core; using libtorrent 0.13.0.0. Compiled with NDEBUG. Applying preferences save uploaded memory Pickling state... Scanning plugin dir /usr/share/deluge/plugins Initialising plugin TorrentNotification Initialising plugin Search Initialising plugin TorrentCreator Initialising plugin NetworkGraph Initialising plugin MoveTorrent Initialising plugin EventLogging Initialising plugin Scheduler Initialising plugin TorrentPeers Initialising plugin BlocklistImport Initialising plugin DesiredRatio Initialising plugin WebSeed Initialising plugin TorrentFiles Initialising plugin WebUi Initialising plugin FlexRSS Initialising plugin SpeedLimiter Initialising plugin NetworkHealth Applying preferences Showing window Traceback (most recent call last): File "/usr/bin/deluge", line 132, in <module> start_deluge() File "/usr/bin/deluge", line 116, in start_deluge interface.start(get_cmd_line_torrents()) File "/var/lib/python-support/python2.5/deluge/interface.py", line 1034, in start self.update() File "/var/lib/python-support/python2.5/deluge/interface.py", line 1101, in update for filename in os.listdir(self.config.get("default_autoload_path")): OSError: [Errno 2] Aucun fichier ou dossier de ce type: '<Here is my auto download folder>' |
|||
#631 | Invalid | Deluge does not support HTTPS trackers | ||
Description |
When i try to use a torrent that uses a https tracker all i get in the "Torrent Status" is bad address. https trackers are becoming more and more frequent, so please support this. |
|||
#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 |