hgext/graphlog.py
changeset 11321 40c06bbf58be
parent 11301 3d0591a66118
child 11448 25430ff23cfa
--- a/hgext/graphlog.py	Wed Jun 09 12:45:48 2010 +0100
+++ b/hgext/graphlog.py	Sun Jun 06 17:25:00 2010 +0900
@@ -370,9 +370,11 @@
 cmdtable = {
     "glog":
         (graphlog,
-         [('l', 'limit', '', _('limit number of changes displayed')),
+         [('l', 'limit', '',
+           _('limit number of changes displayed'), _('NUM')),
           ('p', 'patch', False, _('show patch')),
-          ('r', 'rev', [], _('show the specified revision or range')),
+          ('r', 'rev', [],
+           _('show the specified revision or range'), _('REV')),
          ] + templateopts,
          _('hg glog [OPTION]... [FILE]')),
 }