aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools
diff options
context:
space:
mode:
authorphilip_thiem <ptthiem+bitbuket@gmail.com>2013-11-22 00:51:45 +0000
committerphilip_thiem <ptthiem+bitbuket@gmail.com>2013-11-22 00:51:45 +0000
commitcc90c5093d272397f08e33e4e75bf762d419df27 (patch)
tree394964af1159e000d0a545aa0e36e6095b83ae99 /setuptools
parent4319a969dc616c915d8e5091246df5faf0b080e8 (diff)
downloadexternal_python_setuptools-cc90c5093d272397f08e33e4e75bf762d419df27.tar.gz
external_python_setuptools-cc90c5093d272397f08e33e4e75bf762d419df27.tar.bz2
external_python_setuptools-cc90c5093d272397f08e33e4e75bf762d419df27.zip
extraneous comment left in
Diffstat (limited to 'setuptools')
-rw-r--r--setuptools/svn_utils.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/setuptools/svn_utils.py b/setuptools/svn_utils.py
index f0960da6..0d65bd30 100644
--- a/setuptools/svn_utils.py
+++ b/setuptools/svn_utils.py
@@ -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: