Private GIT

Skip to content
Snippets Groups Projects
Commit 93090856 authored by miigotu's avatar miigotu
Browse files

Merge pull request #2026 from miigotu/wrongly-placed-parenthesis

Fix SiCKRAGETV/sickrage-issues#1930
parents 9d0ca08e 0fe56f49
Branches
Tags
No related merge requests found
......@@ -188,7 +188,7 @@ class PostProcessor(object):
else: # this is called when PP, so we need to do the filename check case-insensitive
filelist = []
checklist = ek.ek(glob.glob, helpers.fixGlob(ek.ek(os.path.join, ek.ek(os.path.dirname, file_path)), '*')) # get a list of all the files in the folder
checklist = ek.ek(glob.glob, helpers.fixGlob(ek.ek(os.path.join, ek.ek(os.path.dirname, file_path))), '*') # get a list of all the files in the folder
for filefound in checklist: # loop through all the files in the folder, and check if they are the same name even when the cases don't match
file_name = filefound.rpartition('.')[0]
if not base_name_only:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment