summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/upip.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/upip.py b/tools/upip.py
index a400c3174..7ecf61e54 100644
--- a/tools/upip.py
+++ b/tools/upip.py
@@ -55,7 +55,7 @@ def _makedirs(name, mode=0o777):
ret = True
except OSError as e:
if e.args[0] != errno.EEXIST and e.args[0] != errno.EISDIR:
- raise
+ raise e
ret = False
return ret