fix Path.copy

This commit is contained in:
Izalia Mae 2021-07-11 21:21:13 -04:00
parent b1bbafecc6
commit beb2689333

View file

@ -59,7 +59,7 @@ class Path(str):
if target.exists and overwrite:
target.delete()
copyfile(self, target)
shutil.copyfile(self, target)
def delete(self):