Mercurial > public > mercurial-scm > hg
diff hgext/mq.py @ 2300:52b9b6751b2c
Use "# Date" instead of "# Timestamp" for dated export/import of patches.
And don't break up list for % formatting.
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Wed, 17 May 2006 19:00:16 +0200 |
parents | dacf718e1d48 |
children | 7c2623aedeb4 |
line wrap: on
line diff
--- a/hgext/mq.py Wed May 17 18:54:30 2006 +0200 +++ b/hgext/mq.py Wed May 17 19:00:16 2006 +0200 @@ -120,8 +120,8 @@ # parse values when importing the result of an hg export if line.startswith("# User "): user = line[7:] - elif line.startswith("# Timestamp "): - date = line[12:] + elif line.startswith("# Date "): + date = line[7:] elif not line.startswith("# ") and line: message.append(line) format = None