aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-05-03 11:59:38 -0400
committerJason R. Coombs <jaraco@jaraco.com>2015-05-03 11:59:38 -0400
commitfb27525a41a3f941aac906564d144d7177d35a79 (patch)
treee92614b831d0c114346bb4ff26539869af197dea
parent33544f0bf806d73495b00b9f8a0e45c25742fbc1 (diff)
downloadexternal_python_setuptools-fb27525a41a3f941aac906564d144d7177d35a79.tar.gz
external_python_setuptools-fb27525a41a3f941aac906564d144d7177d35a79.tar.bz2
external_python_setuptools-fb27525a41a3f941aac906564d144d7177d35a79.zip
Let the exception render itself.
-rw-r--r--setuptools/dist.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/dist.py b/setuptools/dist.py
index 220bcf8c..892044dd 100644
--- a/setuptools/dist.py
+++ b/setuptools/dist.py
@@ -126,8 +126,8 @@ def check_requirements(dist, attr, value):
raise DistutilsSetupError(
"%r must be a string or list of strings "
"containing valid project/version requirement specifiers.\n"
- "Error: %s"
- % (attr, ' '.join(e.args))
+ "%s"
+ % (attr, e)
)