summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmin Ronacher <armin.ronacher@active-4.com>2011-07-20 10:34:22 +0200
committerArmin Ronacher <armin.ronacher@active-4.com>2011-07-20 10:34:22 +0200
commit4e69e867abb29c30442b4f40e4018fead43f5684 (patch)
tree775a7dd5ff87ab67356404cf55970d15bee44c79
parent515ec279a31168272c9f32d24f11735b69eb3217 (diff)
parent2f39e0e9036e4c6afd9c2c05dee355a81bd421ec (diff)
downloadmarkupsafe-4e69e867abb29c30442b4f40e4018fead43f5684.tar.gz
Merge branch 'master' of github.com:mitsuhiko/markupsafe
-rw-r--r--setup.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 2c57ad3..6a516f9 100644
--- a/setup.py
+++ b/setup.py
@@ -51,6 +51,11 @@ class ve_build_ext(build_ext):
build_ext.build_extension(self, ext)
except ext_errors:
raise BuildFailed()
+ except ValueError:
+ # this can happen on Windows 64 bit, see Python issue 7511
+ if "'path'" in str(sys.exc_info()[1]): # works with Python 2 and 3
+ raise BuildFailed()
+ raise
def echo(msg=''):