diff mercurial/localrepo.py @ 6139:989467e8e3a9

Fix bad behaviour when specifying an invalid date (issue700) commit (aborts _after_ typing in a commit message) backout (aborted after the initial revert) tag (edited .hgtags and couldn't commit) import (patch applied, then commit fails) qnew (aborts on bad dates, but writes any valid date into the # Date header) qrefresh (like qnew) sign (like tag) fetch (merge, merge, merge, merge, abort)
author Thomas Arendsen Hein <thomas@intevation.de>
date Sun, 17 Feb 2008 21:34:28 +0100
parents 516d8ffede7c
children 23ffe82615d8
line wrap: on
line diff
--- a/mercurial/localrepo.py	Sun Feb 17 12:53:57 2008 +0100
+++ b/mercurial/localrepo.py	Sun Feb 17 21:34:28 2008 +0100
@@ -202,6 +202,7 @@
 
         date: date tuple to use if committing'''
 
+        date = util.parsedate(date)
         for x in self.status()[:5]:
             if '.hgtags' in x:
                 raise util.Abort(_('working copy of .hgtags is changed '