Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
windowslucker1121 committed Feb 26, 2023
1 parent cc91c3a commit b4f9261
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion perplex.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def build_map(movies, dest,printDoubles, directoryToRunOn = "" ,mapping=[] ):
for i, old_name in enumerate(files):
modifyedDirectory = str(directoryToRunOn).replace("\\", "/")
modifyedOldName = str(old_name).replace("\\", "/")
if modifyedDirectory is not "" and not str(modifyedOldName).__contains__(modifyedDirectory):
if modifyedDirectory != "" and not str(modifyedOldName).__contains__(modifyedDirectory):
print("skipping file because not in given directory " + old_name)
continue
counter = counter + 1;
Expand Down

0 comments on commit b4f9261

Please sign in to comment.