bug fix with directory

dev
Steve L. Nyemba 5 years ago
parent 1db182a528
commit 994e71160e

@ -171,9 +171,10 @@ class GNet :
root = []
for loc in path.split(os.sep) :
root.append(loc)
if not os.path.exists(os.sep.join(root)) :
os.mkdir(os.sep.join(root))
else:
elif not os.path.exists(path):
os.mkdir(path)

Loading…
Cancel
Save