diff --git a/Movie_Data_Capture.py b/Movie_Data_Capture.py index daa6b7a..4737c71 100644 --- a/Movie_Data_Capture.py +++ b/Movie_Data_Capture.py @@ -365,7 +365,7 @@ def movie_lists(source_folder, regexstr: str) -> typing.List[str]: skip_numbers = set() success_folder = Path(conf.success_folder()).resolve() for f in success_folder.glob(r'**/*'): - if not re.match(r'\.nfo', f.suffix, re.IGNORECASE): + if not re.match(r'\.nfo$', f.suffix, re.IGNORECASE): continue if file_modification_days(f) > nfo_skip_days: continue