From cb0b6614c696b90a4db8c99dc8a75a15e1965c05 Mon Sep 17 00:00:00 2001 From: Ruud Date: Fri, 12 Apr 2013 21:14:45 +0200 Subject: [PATCH] move_symlink proper function --- couchpotato/core/plugins/renamer/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/plugins/renamer/main.py b/couchpotato/core/plugins/renamer/main.py index 4e3e6ad..87d9aaf 100644 --- a/couchpotato/core/plugins/renamer/main.py +++ b/couchpotato/core/plugins/renamer/main.py @@ -529,7 +529,7 @@ Remove it if you want it to be renamed (again, or at least let it try again) shutil.copy(old, dest) elif self.conf('file_action') == 'move_symlink': shutil.move(old, dest) - linktastic.symlink(dest, old) + symlink(dest, old) else: shutil.move(old, dest)