diff options
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 98a1ff2e..93ddb292 100644 --- a/setuptools/svn_utils.py +++ b/setuptools/svn_utils.py @@ -87,7 +87,7 @@ def determine_console_encoding(): if encoding:
codecs.lookup(encoding) # make sure a lookup error is not made
- except locale.Error, LookupError:
+ except (locale.Error, LookupError):
encoding = None
#olders pythons defaulted to this
|