os.rename, which is what Pathlib is utilizing, does not support moving across filesystems.
os.rename
Need to replace with copy() and delete() to support this.
No due date set.
Deleting a branch is permanent. It CANNOT be undone. Continue?
os.rename
, which is what Pathlib is utilizing, does not support moving across filesystems.Need to replace with copy() and delete() to support this.