aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xshareit/shareit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/shareit/shareit.py b/shareit/shareit.py
index d8d0525..c77213c 100755
--- a/shareit/shareit.py
+++ b/shareit/shareit.py
@@ -94,7 +94,7 @@ def robot():
if __name__ == '__main__':
print('I: Starting shareit application as development server')
FILES_DIR = DEV_FILES_DIR
- os.makedirs(FILES_DIR, mode=0755)
+ os.makedirs(FILES_DIR, mode=0o0755)
bottle.run(host='0.0.0.0', port=8080, debug=True)
else:
print('I: Starting shareit application as module or wsgi application')