diff --git a/sickgear/helpers.py b/sickgear/helpers.py index 79787ba1..81fc637b 100644 --- a/sickgear/helpers.py +++ b/sickgear/helpers.py @@ -158,9 +158,7 @@ def has_media_ext(filename): return False sep_file = filename.rpartition('.') - return (None is re.search( - r'(extras|-(?:Behind\sThe\sScenes|Deleted\sScenes|Featurettes|Interviews|Scenes|Shorts|Trailers|Other))$', - sep_file[0], re.I)) and (sep_file[2].lower() in mediaExtensions) + return (None is re.search('extras?$', sep_file[0], re.I)) and (sep_file[2].lower() in mediaExtensions) def has_image_ext(filename):