mirror of
https://github.com/SickGear/SickGear.git
synced 2025-03-15 09:07:43 +00:00
Updated regex patterns to accommodate sports shows with dates in them.
This commit is contained in:
parent
67b7eac21b
commit
e30ed48fcf
1 changed files with 4 additions and 3 deletions
|
@ -191,9 +191,10 @@ sports_regexs = [
|
||||||
# Show.Name.123.Event.23rd.Nov.2010.Source.Quality.Etc-Group
|
# Show.Name.123.Event.23rd.Nov.2010.Source.Quality.Etc-Group
|
||||||
'''
|
'''
|
||||||
^(?P<series_name>.+?)[. _-]+
|
^(?P<series_name>.+?)[. _-]+
|
||||||
(?P<sports_event_title>\d{3}[. _-]+\w+[. _-]vs[. _-]\w+)
|
(?P<sports_event_title>\d{3}.+[. _-]vs[. _-].+?)[. _-]+
|
||||||
([. _-]*(?P<extra_info>.+?)((?<![. _-])(?<!WEB)
|
((?![. _-]+\d{2})(.*?)(?:\d{4}[. _-]+))?
|
||||||
-(?P<release_group>[^- ]+))?)?$
|
([. _-]*(?P<extra_info>.+?)((?<![. _-])
|
||||||
|
(?<!WEB)-(?P<release_group>[^- ]+))?)?$
|
||||||
'''
|
'''
|
||||||
),
|
),
|
||||||
]
|
]
|
Loading…
Reference in a new issue