Skip to content
Snippets Groups Projects
Verified Commit 12a5711b authored by Laurent Heirendt's avatar Laurent Heirendt :airplane:
Browse files

fix issue with dir creation

parent 9d3afe24
No related branches found
No related tags found
2 merge requests!58Regular merge of develop,!57Docker system
......@@ -20,6 +20,10 @@ def main(date, name):
# get the root directory
rootDir = os.getcwd()
# create a root directory if not existing
if not os.path.exists(mainDir):
os.mkdir(mainDir)
# generate the full name of the presentation
fullName = date + "_" + name
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment