hgext/children.py
changeset 35888 c8e2d6ed1f9e
parent 34973 11a372d80496
child 37265 923362010525
--- a/hgext/children.py	Sun Jan 21 12:48:39 2018 +0900
+++ b/hgext/children.py	Sun Jan 21 13:03:03 2018 +0900
@@ -19,6 +19,7 @@
 from mercurial.i18n import _
 from mercurial import (
     cmdutil,
+    logcmdutil,
     pycompat,
     registrar,
 )
@@ -65,7 +66,7 @@
         ctx = repo[rev]
         childctxs = ctx.children()
 
-    displayer = cmdutil.show_changeset(ui, repo, opts)
+    displayer = logcmdutil.changesetdisplayer(ui, repo, opts)
     for cctx in childctxs:
         displayer.show(cctx)
     displayer.close()