diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-08-12 22:44:41 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-08-12 22:44:41 +0200 |
commit | 72abfb455275546e110e4daf811480dd47ffceea (patch) | |
tree | 4f6955a97af4600c31dffc5941a57640d81da0a3 /pyLoadCli.py | |
parent | encoding fix try (diff) | |
download | pyload-72abfb455275546e110e4daf811480dd47ffceea.tar.xz |
improvements
Diffstat (limited to 'pyLoadCli.py')
-rwxr-xr-x | pyLoadCli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyLoadCli.py b/pyLoadCli.py index 426cf6370..4e97489c8 100755 --- a/pyLoadCli.py +++ b/pyLoadCli.py @@ -37,7 +37,7 @@ from module.ConfigParser import ConfigParser import codecs -sys.stdout = codecs.getwriter("unicode")(sys.stdout, errors = "replace") +sys.stdout = codecs.getwriter("utf8")(sys.stdout, errors = "replace") if sys.stdout.encoding.lower().startswith("utf"): conv = unicode |