Custom Query (2447 matches)
Results (124 - 126 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) |
|||
#710 | Invalid | Crash after Upgrade Frugalware 0.9 -> Frugalware current-> Bug Buddy Start again | ||
Description |
sudo pacman-g2 -S deluge Password: résolution des dépendances... terminé. recherche d'inter-conflits (1/1) ####################### 100% Cibles: deluge-1.0.7-2 Taille totale du paquet: 3,1 MB Taille totale du paquet décompressé: 12,4 MB Procéder aux mises à jour? [O/n] O vérification de l'intégrité des paquets... terminé. (1/1) installation deluge ####################### 100% updating hicolor icon cache... done. |
|||
#2366 | Duplicate | Location of deluge pid file | ||
Description |
Currently, the deluge pid file is located under $XDG_CONFIG_DIR, which may force the user to manually delete the pid file on unclean exits, eg power failure. If the location of the pid file was to use the $XDG_RUNTIME_DIR specification, this situation would be remedied. Exerpt of the standard according to http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html "The lifetime of the directory MUST be bound to the user being logged in. It MUST be created when the user first logs in and if the user fully logs out the directory MUST be removed. If the user logs in more than once he should get pointed to the same directory, and it is mandatory that the directory continues to exist from his first login to his last logout on the system, and not removed in between. Files in the directory MUST not survive reboot or a full logout/login cycle." The specification ensures that a pid file will not survive on a reboot or login/logout cycle. Thus, using $XDG_RUNTIME_DIR remedies this situation. |