Skip to content

Commit 3ea047d

Browse files
committed
fix console encoding on nt
1 parent a2fd544 commit 3ea047d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: locale/cs/LC_MESSAGES/setup.mo

-42 Bytes
Binary file not shown.

Diff for: pyLoadCore.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
@author: sebnapi
1919
@author: RaNaN
2020
@author: mkaay
21-
@version: v0.4.8
21+
@version: v0.4.9
2222
"""
23-
CURRENT_VERSION = '0.4.8'
23+
CURRENT_VERSION = '0.4.9'
2424

2525
import __builtin__
2626

@@ -58,7 +58,7 @@
5858
from codecs import getwriter
5959

6060
if os.name == "nt":
61-
enc = "cp850"
61+
enc = sys.stdout.encoding
6262
else:
6363
enc = "utf8"
6464

0 commit comments

Comments
 (0)