diff options
Diffstat (limited to 'pyLoadCore.py')
-rwxr-xr-x | pyLoadCore.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pyLoadCore.py b/pyLoadCore.py index aa8e649a9..25d623df6 100755 --- a/pyLoadCore.py +++ b/pyLoadCore.py @@ -18,9 +18,9 @@ @author: sebnapi @author: RaNaN @author: mkaay - @version: v0.4.8 + @version: v0.4.9 """ -CURRENT_VERSION = '0.4.8' +CURRENT_VERSION = '0.4.9' import __builtin__ @@ -58,7 +58,7 @@ from module.utils import freeSpace, formatSize from codecs import getwriter if os.name == "nt": - enc = "cp850" + enc = sys.stdout.encoding else: enc = "utf8" |