hgext/graphlog.py
changeset 4730 eadfaa9ec487
parent 4633 ff7253a0d1da
child 4735 8d4fac0a9df7
--- a/hgext/graphlog.py	Tue Jun 26 20:37:15 2007 +0200
+++ b/hgext/graphlog.py	Tue Jun 26 22:38:57 2007 +0200
@@ -255,11 +255,11 @@
 
 cmdtable = {
     "glog":
-    (graphlog,
-     [("l", "limit", "", _("limit number of changes displayed")),
-      ("p", "patch", False, _("show patch")),
-      ("r", "rev", [], _("show the specified revision or range")),
-      ("", "style", "", _("display using template map file")),
-      ("", "template", "", _("display with template"))],
-     "hg glog [OPTIONS]"),
+        (graphlog,
+         [('l', 'limit', '', _('limit number of changes displayed')),
+          ('p', 'patch', False, _('show patch')),
+          ('r', 'rev', [], _('show the specified revision or range')),
+          ('', 'style', '', _('display using template map file')),
+          ('', 'template', '', _('display with template'))],
+         _('hg glog [OPTION]...')),
 }