From 4319a969dc616c915d8e5091246df5faf0b080e8 Mon Sep 17 00:00:00 2001 From: philip_thiem Date: Thu, 21 Nov 2013 23:50:50 +0000 Subject: small logic error --- setuptools/svn_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setuptools/svn_utils.py') 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. -- cgit v1.2.1