summaryrefslogtreecommitdiff
path: root/setupinfo.py
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2015-03-19 20:20:36 +0100
committerStefan Behnel <stefan_ml@behnel.de>2015-03-19 20:20:36 +0100
commit4c70718a0dbb89b5fb87aad91bb57ab40e869b8f (patch)
tree1c0264db174ca7e909e2adbf3bc07b84e0feac60 /setupinfo.py
parent148fd51102e0e45f903c5ae169dd63f19875d578 (diff)
downloadpython-lxml-4c70718a0dbb89b5fb87aad91bb57ab40e869b8f.tar.gz
fix compiler error propagation
Diffstat (limited to 'setupinfo.py')
-rw-r--r--setupinfo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setupinfo.py b/setupinfo.py
index 6b4c9846..e2c2dc95 100644
--- a/setupinfo.py
+++ b/setupinfo.py
@@ -212,7 +212,7 @@ def extra_setup_args():
if sys.platform in ('darwin',):
sys.stderr.write('Perhaps try: xcode-select --install\n')
sys.stderr.write('*********************************************************************************\n')
- raise
+ raise
result['cmdclass'] = {'build_ext': CheckLibxml2BuildExt}
return result