Commit 86022e17 authored by owsla's avatar owsla

The epoch is now a valid date.


git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup@982 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
parent 62a2e782
New in v1.2.3 (????/??/??)
---------------------------
The epoch is now a valid date. Closes Savannah bug #24814. (Andrew Ferguson)
Report that connection has dropped if filesystem operation returns ENOTCONN.
Closes Ubuntu bug #219920. (Andrew Ferguson)
......
......@@ -242,6 +242,6 @@ the day).""" % timestr)
timestr = "%s-%02d-%02dT00:00:00%s" % (match.group('year'),
int(match.group('month')), int(match.group('day')), gettzd())
t = stringtotime(timestr)
if t: return t
if t is not None: return t
else: error()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment