updated for python 3.14 and chmod
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-10-18 17:55:32 +02:00
parent 037d2d436c
commit 7279185f1a
2 changed files with 2 additions and 1 deletions

View File

@@ -46,6 +46,7 @@ def _main():
continue
tpath = fpath.replace(config["dirs"]["from"], config["dirs"]["to"])
shutil.move(fpath, tpath)
os.chmod(tpath, 0o666)
log(f"moved {fpath}")
for filename in completed: