Commit cc90c509 authored by philip_thiem's avatar philip_thiem

extraneous comment left in

parent 4319a969
......@@ -90,12 +90,11 @@ def determine_console_encoding():
except (locale.Error, LookupError):
encoding = None
#olders pythons defaulted to this
is_osx = sys.platform == "darwin"
if not encoding:
return ["US-ASCII", "utf-8"][is_osx]
elif encoding.startswith("mac-") and is_osx:
#certain version of pythons would return mac-roman as default
#certain versions of python would return mac-roman as default
#OSX as a left over of earlier mac versions.
return "utf-8"
else:
......
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