From 9559c6af87e8f6736872acaa43ab5591c8a4b8ff Mon Sep 17 00:00:00 2001 From: Florent CHAMAULT <fchamault@hubee.tv> Date: Thu, 22 Jan 2015 19:47:39 +0100 Subject: [PATCH] Update Regexes.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bonsoir, Suite a une demande sur un commit, j'ai trouvé par moi même le changement a faire pour résoudre le problème sur le commit https://github.com/sarakha63/Sick-Beard/commit/7760ec7f4f2651ccd8fe33370b5e490d7e36a864 Voici le changement effectué. <----------> ('standard_cpas_bien', # [www.Cpasbien.me] Dexter.S07E04.FRENCH.LD.HDTV.XviD-MiNDe ''' \[[a-zA-Z0-9\.\s]{2,20}\][. _-]+ (?P<series_name>.+?)[. _-]+ # Show_Name and separator s(?P<season_num>\d+)[. _-]* # S01 and optional separator e(?P<ep_num>\d+) # E02 and separator [. _-]*((?P<extra_info>.+?) # Source_Quality_Etc- ((?<![. _-])(?<!WEB) # Make sure this is really the release group -(?P<release_group>[^- ]+))?)?$ # Group '''), <----------> Ajout d'un \s dans la regel pour le [ www.Cpasbien.me ] Cordialement --- sickbeard/name_parser/regexes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sickbeard/name_parser/regexes.py b/sickbeard/name_parser/regexes.py index 813eff9cc..d2c79ad1e 100644 --- a/sickbeard/name_parser/regexes.py +++ b/sickbeard/name_parser/regexes.py @@ -73,7 +73,7 @@ ep_regexes = [ ('standard_cpas_bien', # [www.Cpasbien.me] Dexter.S07E04.FRENCH.LD.HDTV.XviD-MiNDe ''' - \[[a-zA-Z0-9\.]{2,20}\][. _-]+ + \[[a-zA-Z0-9\.\s]{2,20}\][. _-]+ (?P<series_name>.+?)[. _-]+ # Show_Name and separator s(?P<season_num>\d+)[. _-]* # S01 and optional separator e(?P<ep_num>\d+) # E02 and separator -- GitLab