diff options
| author | philip_thiem <ptthiem+bitbuket@gmail.com> | 2013-11-21 23:50:50 +0000 |
|---|---|---|
| committer | philip_thiem <ptthiem+bitbuket@gmail.com> | 2013-11-21 23:50:50 +0000 |
| commit | 3669103f0e4581dddd07b056b68f14da14d87c81 (patch) | |
| tree | b78381868f7fc6fb36def231f2c45936599ec3cb /setuptools/svn_utils.py | |
| parent | 0e3de03e1905a1e3aad189b59a15ce7cf2e913f5 (diff) | |
| download | python-setuptools-bitbucket-3669103f0e4581dddd07b056b68f14da14d87c81.tar.gz | |
small logic error
Diffstat (limited to 'setuptools/svn_utils.py')
| -rw-r--r-- | setuptools/svn_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/svn_utils.py b/setuptools/svn_utils.py index e8570e52..f0960da6 100644 --- a/setuptools/svn_utils.py +++ b/setuptools/svn_utils.py @@ -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.
|
