tested with python3.4.9

This commit is contained in:
Julian Daube 2020-04-16 13:34:14 +02:00
parent d2d8f520ad
commit 4e03273544

View File

@ -77,8 +77,8 @@ def main():
continue
# create directory
dst.parent.mkdir(parents=True, exist_ok=True)
shutil.copyfile(src, dst)
dst.parent.mkdir(parents=True)
shutil.copyfile(str(src), str(dst))
if __name__ == "__main__":