Custom Query (2447 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (367 - 369 of 2447)

Ticket Resolution Summary Owner Reporter
#1878 Duplicate Deluge's "Quit & Shutdown Daemon" command doesn't always work Simon80
Description

Hi, I'm sorry I don't have enough details to actually solve this, but the GUI frontend's Quit & Shutdown Daemon command sometimes doesn't actually shutdown the daemon. If I start the frontend again and try again, it sometimes works. I have no idea how frequently this occurs or if I can reproduce it consistently yet, I just know that I've seen this problem at least twice now.

#1945 Fixed Mutable default argument in deluge.ui.client.DaemonSSLProxy.__init__ Calum Simon
Description

Hi,

When looking at the source code I saw that DaemonSSLProxy.init have a mutable default parameter value: http://git.deluge-torrent.org/deluge/tree/deluge/ui/client.py#n269

This may be the source of bugs as explained here:

http://effbot.org/zone/default-values.htm#valid-uses-for-mutable-defaults

It may be intentional, but I am not sure as I am not familiar with the code. If it is intentional, a comment should be added to say so. Otherwise, the method should be changed to look like this:

    def __init__(self, event_handlers=None):
        if event_handlers is None:
            event_handlers = {}
#2409 Fixed [win32] Console Non-interactive ImportError Calum Simbiat
Description

When trying to run any console operations on Windows the following error is shown:

C:\WS\Deluge\deluge-console.exe info
Traceback (most recent call last):
File "<string>", line 6, in <module>
File "__main__.py", line 128, in <module>
File "__main__deluge-console__.py", line 8, in <module>
File "pkg_resources.py", line 318, in load_entry_point
File "pkg_resources.py", line 2221, in load_entry_point
File "pkg_resources.py", line 1954, in load
File "c:\ws\deluge\deluge-1.3.6-py2.7.egg\deluge\ui\console\__init__.py", line
36, in <module>
from main import start
File "c:\ws\deluge\deluge-1.3.6-py2.7.egg\deluge\ui\console\main.py", line 53,
in <module>
from deluge.ui.console.eventlog import EventLog
File "c:\ws\deluge\deluge-1.3.6-py2.7.egg\deluge\ui\console\eventlog.py", line
43, in <module>
import curses
File "curses/__init__.py", line 15, in <module>
ImportError: No module named _curses
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.