--
Ticket URL: <http://dev.deluge-torrent.org/ticket/1983>
Deluge <http://deluge-torrent.org/>
Deluge project
* milestone: 1.3.x => 1.3.4
--
Ticket URL: <http://dev.deluge-torrent.org/ticket/1983#comment:1>
* cc: non7top@… (added)
Comment:
Same issue here with latest git
--
Ticket URL: <http://dev.deluge-torrent.org/ticket/1983#comment:2>
* owner: => Cas
* status: new => accepted
--
Ticket URL: <http://dev.deluge-torrent.org/ticket/1983#comment:3>
Comment(by Cas):
I am unable replicate this unless I set LC_ALL=C, can you check that you
have UTF8 language set for the OS?
--
Ticket URL: <http://dev.deluge-torrent.org/ticket/1983#comment:4>
* priority: major => minor
* milestone: 1.3.4 => Future
Comment:
i pmd my seedbox provider to check this , but you are probably right since
on other box i took later it worked fine. other one is dedi box so
probably it does have utf on by default. thx for pointing out possible
cause of this. i will probably close ticket once cause is confirmed
--
Ticket URL: <http://dev.deluge-torrent.org/ticket/1983#comment:5>
* status: accepted => closed
* resolution: => invalid
Comment:
The following code helped a user which the same issue determine that
deluged was actually running with ANSI_X3.4-1968 (ASCII) instead of UTF8
so adding it here for reference.
{{{
diff --git a/deluge/main.py b/deluge/main.py
index b370c65..88268f8 100644
--- a/deluge/main.py
+++ b/deluge/main.py
@@ -209,7 +209,7 @@ def write_pidfile():
pass
deluge.log.setupLogger(level=options.loglevel,
filename=options.logfile)
from deluge.log import LOG as log
-
+ log.error(sys.getfilesystemencoding())
if options.profile:
import hotshot
hsp =
hotshot.Profile(deluge.configmanager.get_config_dir("deluged.profile"))
}}}
--
Ticket URL: <http://dev.deluge-torrent.org/ticket/1983#comment:6>
Comment (by keretamalam):
I am about to leave and cannot look into this further right now, but I do
want to mention that relying on pkg-config itself is not a problem (as you
said, we also use it later), the problem is that on some systems, the .pc
file for pkg-config is supplying wrong information (whereas on yours, it's
botan-config that is wrong), so that's why I'm trying to make it work with
both (while one of them is bad).
[http://maskodoq.blogspot.com/2014/03/unit-link-terbaik-di-indonesia.html
Unit Link Terbaik di Indonesia Commonwealth Life Investra Link]
[http://maskodoq.blogspot.com/2013/07/CiptoJunaedy.html Cipto Junaedy]
[http://etnisjawa.blogspot.com/2013/08/apakah-cipto-junaedy-bohong.html
Cipto Junaedy]
--
Ticket URL: <http://dev.deluge-torrent.org/ticket/1983#comment:7>