diff --git a/karaokatalog/instructions/MoveInstruction.py b/karaokatalog/instructions/MoveInstruction.py index e1cc136..5fb04ff 100644 --- a/karaokatalog/instructions/MoveInstruction.py +++ b/karaokatalog/instructions/MoveInstruction.py @@ -1,4 +1,3 @@ -import shutil from dataclasses import dataclass from pathlib import Path @@ -19,4 +18,4 @@ class MoveInstruction(Instruction): if self.new_path.exists(): raise FileExistsError("New path already exists, not moving anything") - shutil.move(self.old_path, self.new_path) + self.old_path.rename(self.new_path)