diff --git a/changelog.py b/changelog.py index 07da76134..27980b393 100644 --- a/changelog.py +++ b/changelog.py @@ -23,7 +23,7 @@ def parse_date(dstr): try: t = tzparse(dstr, format) return t - except Exception: + except ValueError: pass raise Exception("Couldn't parse the date string '%s'" % dstr)