hgext/mq.py
changeset 2300 52b9b6751b2c
parent 2299 dacf718e1d48
child 2301 7c2623aedeb4
--- a/hgext/mq.py
+++ b/hgext/mq.py
@@ -120,8 +120,8 @@ class queue:
                 # 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