mercurial/cmdutil.py
changeset 22764 1e2f54a149e8
parent 22611 2ff28e07d7d6
child 22765 55dcc7fb731c
--- a/mercurial/cmdutil.py	Fri Oct 03 19:47:57 2014 -0400
+++ b/mercurial/cmdutil.py	Fri Oct 03 22:03:31 2014 -0400
@@ -1152,7 +1152,9 @@
         # behaviour cannot be changed so leave it here for now.
         def showparents(**args):
             ctx = args['ctx']
-            parents = [[('rev', p.rev()), ('node', p.hex())]
+            parents = [[('rev', p.rev()),
+                        ('node', p.hex()),
+                        ('phase', p.phasestr())]
                        for p in self._meaningful_parentrevs(ctx)]
             return showlist('parent', parents, **args)