hgext/children.py
changeset 6192 cd65a67aff31
parent 4785 be78ab217109
child 6747 f6c00b17387c
--- a/hgext/children.py	Fri Feb 29 02:15:31 2008 +0100
+++ b/hgext/children.py	Fri Feb 29 02:45:12 2008 +0100
@@ -8,6 +8,7 @@
 # of the GNU General Public License, incorporated herein by reference.
 
 from mercurial import cmdutil
+from mercurial.commands import templateopts
 from mercurial.i18n import _
 
 
@@ -35,7 +36,6 @@
     "children":
         (children,
          [('r', 'rev', '', _('show children of the specified rev')),
-          ('', 'style', '', _('display using template map file')),
-          ('', 'template', '', _('display with template'))],
+         ] + templateopts,
          _('hg children [-r REV] [FILE]')),
 }