diff options
author | stefan <stefan@epy> | 2012-11-05 02:21:15 +0100 |
---|---|---|
committer | stefan <stefan@epy> | 2012-11-05 02:21:15 +0100 |
commit | 6ca79b44ed994f3765de676813ab8152adc2092b (patch) | |
tree | 74bde5a00d6730a4ea5666a35982e411ebb70dc9 /setuptools/command/upload_docs.py | |
parent | c05b318694be6daf027d6d55f366d560ba54d51d (diff) | |
download | python-setuptools-bitbucket-6ca79b44ed994f3765de676813ab8152adc2092b.tar.gz |
Python 3.0 has no surrogateescape.
Diffstat (limited to 'setuptools/command/upload_docs.py')
-rw-r--r-- | setuptools/command/upload_docs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/upload_docs.py b/setuptools/command/upload_docs.py index c43b0f42..e21a88ce 100644 --- a/setuptools/command/upload_docs.py +++ b/setuptools/command/upload_docs.py @@ -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' |