fix reload

This commit is contained in:
2020-11-08 00:47:10 +01:00
parent 380045d6bf
commit 8e36dbc4a5
3 changed files with 47 additions and 36 deletions

View File

@@ -276,7 +276,7 @@ class FileManagerScheduler(TaskScheduler):
if os.path.exists(dst):
raise RuntimeError(
f"unable to move file from '{path} "
f"to '{dst}', dstination path exists already")
f"to '{dst}', destination path exists already")
dst_dir = os.path.dirname(dst)
if not os.path.isdir(dst_dir) and rule.auto_create: