Custom Query (2447 matches)
Results (10 - 12 of 2447)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#3581 | Fixed | AttributeError: module 'libtorrent' has no attribute 'add_torrent_params_flags_t' | ||
Description |
~> /usr/bin/deluged -L debug Traceback (most recent call last): File "/usr/bin/deluged", line 33, in <module> sys.exit(load_entry_point('deluge==2.1.1', 'gui_scripts', 'deluged')()) File "/usr/lib/python3/dist-packages/deluge/core/daemon_entry.py", line 87, in start_daemon from deluge.core.daemon import is_daemon_running File "/usr/lib/python3/dist-packages/deluge/core/daemon.py", line 19, in <module> from deluge.core.core import Core File "/usr/lib/python3/dist-packages/deluge/core/core.py", line 41, in <module> from deluge.core.torrentmanager import TorrentManager File "/usr/lib/python3/dist-packages/deluge/core/torrentmanager.py", line 53, in <module> lt.add_torrent_params_flags_t.flag_paused AttributeError: module 'libtorrent' has no attribute 'add_torrent_params_flags_t' Installed versions: deluge-common/jammy,now 2.1.1-0~202207101304~ubuntu22.04.1 all [installed,automatic] Deluge Common Files deluge-web/jammy,now 2.1.1-0~202207101304~ubuntu22.04.1 all [installed] Deluge Web UI deluged/jammy,now 2.1.1-0~202207101304~ubuntu22.04.1 all [installed] Deluge Daemon (deluged) libtorrent-rasterbar2.0/jammy,now 2.0.8.git20221114.64817e0e87-1ppa1~22.04 amd64 [installed,automatic] C++ bittorrent library by Rasterbar Software python3-libtorrent/jammy,now 2.0.8.git20221114.64817e0e87-1ppa1~22.04 amd64 [installed,automatic] Python bindings for libtorrent-rasterbar (Python 3) |
|||
#3566 | Fixed | deluge-web does not start anymore | ||
Description |
$ /usr/bin/deluge-web -d -c /home/paolo/.config/deluge/ -p 8112 Traceback (most recent call last):
TypeError: Path segment must be bytes, but is <class 'str'> This is after upgrading twisted to version 22.10.0 (last working version 22.08.0). |
|||
#3538 | Fixed | Adding host in console-UI fails. | ||
Description |
As title, currently it's not possible to add new host in console-UI as states port need be integer. I added some debug-prints and found the 'result' dict indeed saves port as string, e.g. I tested it worked here just changing line 107 of connectionmanager.py from/to: result['port']['value'], int(result['port']['value']), Also, currently when having input new host data and pressed return then need also press escape to get out of connection-manager, which i just changed in same file line 135 from/to: self.update_select_host_popup() self.pop_popup() Thanks in advance. |