Skip to content

Commit

Permalink
Moved the [REQ] to non_release_names
Browse files Browse the repository at this point in the history
  • Loading branch information
p0psicles authored and fernandog committed May 11, 2016
1 parent b9f0c3d commit 5d09eb7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sickbeard/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ def remove_non_release_groups(name, clean_proper=False):
r'\[silv4\]$': 'searchre',
r'\[Seedbox\]$': 'searchre',
r'\[PublicHD\]$': 'searchre',
r'\[REQ\]\s$': 'searchre',
r'\.\[PublicHD\]$': 'searchre',
r'\.\[NO.RAR\]$': 'searchre',
r'\[NO.RAR\]$': 'searchre',
Expand Down Expand Up @@ -182,7 +183,7 @@ def remove_non_release_groups(name, clean_proper=False):
_name = re.sub(r'(?i)' + remove_string, '', _name)

if clean_proper:
_name = remove_strings(_name, ['.mkv', '.avi', '.mp4', '[req] '])
_name = remove_strings(_name, ['.mkv', '.avi', '.mp4'])

return _name

Expand Down

0 comments on commit 5d09eb7

Please sign in to comment.