Custom Query (2447 matches)
Results (505 - 507 of 2447)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#2979 | Fixed | Startup error when deluge-web not installed | ||
Description |
Traceback (most recent call last): File "/usr/bin/deluge", line 11, in <module> load_entry_point('deluge==2.0.0.dev6961', 'gui_scripts', 'deluge')() File "/usr/lib/python2.7/dist-packages/deluge/ui/ui_entry.py", line 42, in start_ui for entrypoint in pkg_resources.iter_entry_points('deluge.ui')]) File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 2249, in load return self.resolve() File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 2255, in resolve module = __import__(self.module_name, fromlist=['__name__'], level=0) ImportError: No module named web |
|||
#3203 | Fixed | Start Minimized + Interface Password = Perm Lockout | ||
Description |
I changed my password even on the webui and it wont let me close or open deluge. They are both perm locked! Here you can see: https://i.imgur.com/pAKicBE.gifv |
|||
#636 | Fixed | start_localhost deluged config to gtkui location... | ||
Description |
While trying to hack on deluge (installed in a develop dir) and preserve my current deluge configuration, I noticed that deluged would use the configuration from my current deluge configuration. As I didn't want to risk messing up my current config or torrents, I looked around the deluge and found that, when deluge is started in classic_mode, the daemon is started and the config location is the default one (even if a gtkui config location is specified). Therefore, the attached diff feeds the gtkui config location to the daemon if the daemon is started up in classic_mode. You will notice that the start_localhost method in connectionmanager uses: 1) the long options, and 2) the winprocess call isn't changed. The first because the short options weren't being correctly parsed in main (or my poor usage of python is so bad that I could only get the long options to work). The second was because I don't have a windows box to test changes to the winprocess call on. |