diff --git a/couchpotato/core/_base/updater/main.py b/couchpotato/core/_base/updater/main.py index 980e247b..3ddec1fe 100644 --- a/couchpotato/core/_base/updater/main.py +++ b/couchpotato/core/_base/updater/main.py @@ -305,7 +305,7 @@ class SourceUpdater(BaseUpdater): if not os.path.isdir(dirname): self.makeDir(dirname) - os.rename(fromfile, tofile) + shutil.move(fromfile, tofile) try: existing_files.remove(tofile) except ValueError: