Skip to content

Commit 2847ebf

Browse files
author
ebaum
committed
automatically create logs/ if it doesnt exist
1 parent 1bdac60 commit 2847ebf

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

__init__.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import os
2+
try:
3+
os.mkdir('logs')
4+
except:
5+
pass

0 commit comments

Comments
 (0)