Private GIT

Skip to content
Snippets Groups Projects
Commit 5fa9c9e6 authored by Nic Wolfe's avatar Nic Wolfe
Browse files

Don't crash when people use make believe dates in release names

parent cdf22b70
No related branches found
No related tags found
No related merge requests found
......@@ -312,7 +312,10 @@ class FileParser(object):
month = day
day = tmp_month
try:
episodenumbers = [datetime.date(int(match.group('year')), month, day)]
except ValueError, e:
raise InvalidFilename(str(e))
else:
raise ConfigValueError(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment