diff --git a/couchpotato/core/plugins/scanner/main.py b/couchpotato/core/plugins/scanner/main.py index 78feca8e..860f9437 100644 --- a/couchpotato/core/plugins/scanner/main.py +++ b/couchpotato/core/plugins/scanner/main.py @@ -775,7 +775,7 @@ class Scanner(Plugin): return None def findYear(self, text): - matches = re.search('(?P[12]{1}[0-9]{3})', text) + matches = re.search('(?P19[0-9]{2}|20[0-9]{2})', text) if matches: return matches.group('year')