forked from platypush/platypush
setup.py
This commit is contained in:
parent
98bfb5d2a3
commit
92970a83d6
1 changed files with 3 additions and 2 deletions
5
setup.py
5
setup.py
|
@ -19,8 +19,9 @@ def create_etc_dir():
|
|||
try:
|
||||
os.makedirs(path)
|
||||
except OSError as e:
|
||||
if isinstance(e, PermissionError) \
|
||||
or e.errno == errno.EEXIST and os.path.isdir(path):
|
||||
if isinstance(e, PermissionError):
|
||||
print('WARNING: Could not create /etc/runbullet')
|
||||
elif e.errno == errno.EEXIST and os.path.isdir(path):
|
||||
pass
|
||||
else:
|
||||
raise
|
||||
|
|
Loading…
Reference in a new issue