Simplify error handling in mkdir_p()
This commit is contained in:
@@ -91,9 +91,7 @@ def mkdir_p(path):
|
||||
try:
|
||||
os.makedirs(path)
|
||||
except OSError as exc: # Python >2.5
|
||||
if exc.errno == errno.EEXIST:
|
||||
pass
|
||||
else:
|
||||
if exc.errno != errno.EEXIST:
|
||||
raise
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user