Fix syntax :)

tox-dependencies
Eric Holscher 2017-03-30 22:09:09 -07:00
parent f681fd26df
commit 4ca931d406
1 changed files with 1 additions and 1 deletions

View File

@ -166,6 +166,6 @@ def safe_makedirs(directory_name):
try:
os.makedirs(directory_name)
except OSError:
if e.errno == errno.EEXIST
if e.errno == errno.EEXIST:
pass
raise