better handle errors with date parsing (issue983)
authorDirkjan Ochtman <dirkjan@ochtman.nl>
Wed, 13 Feb 2008 16:46:43 +0100
changeset 6086 e85deb6dcf9d
parent 6085 e1f11b8a1e9e
child 6090 152b6c5c1574
better handle errors with date parsing (issue983) Windows cannot always handle a 1970-01-01 parameter to time.mktime().
mercurial/util.py
--- a/mercurial/util.py	Wed Feb 13 05:27:04 2008 +0300
+++ b/mercurial/util.py	Wed Feb 13 16:46:43 2008 +0100
@@ -1594,7 +1594,7 @@
         for format in formats:
             try:
                 when, offset = strdate(string, format, defaults)
-            except ValueError:
+            except (ValueError, OverflowError):
                 pass
             else:
                 break