exchanged os.mkdirs by os.mkdir

This commit is contained in:
Joachim Lusiardi 2015-01-07 20:45:52 +01:00
parent 00bba345f9
commit 3cc386b409
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ def handle_event(event):
os.kill(pid, signal.SIGHUP)
if not os.path.exists(target_path):
os.mkdirs(target_path)
os.mkdir(target_path)
pid = get_pid()