Add path separator for check

This commit is contained in:
Ruud
2013-12-01 19:23:53 +01:00
parent 46b2d6ba6e
commit 50c5044fe8
+2 -2
View File
@@ -114,7 +114,7 @@ class Renamer(Plugin):
return
else:
for item in no_process:
if from_folder in item:
if '%s%s' % (from_folder, os.path.sep) in item:
log.error('To protect your data, the movie libraries can\'t be inside of or the same as the "from" folder.')
return
@@ -146,7 +146,7 @@ class Renamer(Plugin):
if movie_folder:
for item in no_process:
if movie_folder in item:
if '%s%s' % (movie_folder, os.path.sep) in item:
log.error('To protect your data, the movie libraries can\'t be inside of or the same as the provided movie folder.')
return