dateutil.parser.parse now, on failure, throws ValueError containing a
tuple - now it has the troublesome string too.
This causes the tests to fail in Debian sid.
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
>>> rfc822_date_to_git('So, 26 Feb 1998 8:50:00 +0100')
Traceback (most recent call last):
...
- ValueError: Unknown string format
+ ValueError: ('Unknown string format:', 'So, 26 Feb 1998 8:50:00 +0100')
>>> rfc822_date_to_git('So, 26 Feb 1998 8:50:00 +0100', fuzzy=True)
'888479400 +0100'
"""