Commit 397eda9b authored by stefan@epy's avatar stefan@epy

Python 3.0 has no surrogateescape.

--HG--
branch : distribute
extra : rebase_source : 83635f70b89fafb65f630947430b5c315cd9c80a
parent 19a72389
......@@ -25,7 +25,7 @@ try:
except ImportError:
from setuptools.command.upload import upload
if sys.version_info >= (3,):
if sys.version_info >= (3, 1):
errors = 'surrogateescape'
else:
errors = 'strict'
......
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