From fce6dc7658d7f885ce294b52f4b6f2ff94751cd3 Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Fri, 6 Apr 2018 16:22:58 +0200 Subject: [PATCH] Updated when parsing for show name allow names with numbers. --- app/classedStray.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/classedStray.py b/app/classedStray.py index 36e94ef..b79dbed 100755 --- a/app/classedStray.py +++ b/app/classedStray.py @@ -61,7 +61,7 @@ class strayEpisode(object): return hashlib.md5("b'{}'".format(self.parent).encode()).hexdigest()[:8] def findSeriesName(self): - find = re.compile("^[a-zA-Z. ]*") + find = re.compile("^[a-zA-Z0-9. ]*") m = re.match(find, self.parent) if m: name, hit = process.extractOne(m.group(0), getShowNames().keys())