Custom Query (2448 matches)
Results (106 - 108 of 2448)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#3248 | Fixed | No input accepted in CLI mode with py3 install. | mhertz | |
Description |
It works with a py2 install, but with a py3 install then it fails accepting input in console-UI after pressing 'l'to enter CLI mode and the cursor just blinks and no input and also cannot quit with 'Q'and needs ctrl+c instead. Only pressing tab twice lists all commands but nothing else is accepted. I've tried both normal install and virtualenv but always the same and nothing in logs either. I'm on latest fully updated arch Linux. Note this issue has been there for many months and so not based from a recent commit. Thanks in advance. |
|||
#3247 | Fixed | Replace deprecated platform.linux_distribution() function | DjLegolas | DjLegolas |
Description |
As of python 3.5, the platform.linux_distribution() is marked as deprecated. |
|||
#3246 | Invalid | rencode.loads() error | pjlbyrne | |
Description |
Built deluge from develop on archlinux. Install and start the daemon with systemctl. Start deluge-console. The local daemon is not shown as contactable. The log shows:
Running 'python2', importing rencode and calling loads() manually it does accept the 'decode_utf8' keyword. If I use inspect in transfer.py to show in the log the function signature for loads() it says: ArgSpec?(args=x?, varargs=None, keywords=None, defaults=None) which does not match the behavior in the interactive session ie no 'decode_utf8' keyword param. There is a bug against rencode on github which appears to be the same issue: https://github.com/aresch/rencode/issues/15 I note that the call to rencode.dumps() in transfer_message() in transfer.py does not do any utf8 encoding, so I tried just removing the 'decode_utf8=True' arg, but I get: 9:29:29.127 [INFO ][deluge.core.rpcserver :171 ] Deluge Client connection made from: 127.0.0.1:54980 19:29:29.155 [INFO ][deluge.core.rpcserver :197 ] Deluge client disconnected: Connection to the other side was lost in a non-clean fashion: Connection lost. I may be unable to access the internet in the next week (China!). Apologies for any delay in responding to updates on this. |