Commit 4319a969 authored by philip_thiem's avatar philip_thiem

small logic error

parent 73c86d05
......@@ -93,7 +93,7 @@ def determine_console_encoding():
#olders pythons defaulted to this
is_osx = sys.platform == "darwin"
if not encoding:
return ["utf-8", "US-ASCII"][is_osx]
return ["US-ASCII", "utf-8"][is_osx]
elif encoding.startswith("mac-") and is_osx:
#certain version of pythons would return mac-roman as default
#OSX as a left over of earlier mac versions.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment