bookmarks: set VALUE in push/pull
authorWill Maier <willmaier@ml1.net>
Tue, 14 Sep 2010 21:45:43 -0500
changeset 12302 6ad36bca3a8a
parent 12301 3a082866422a
child 12303 4ab87473029d
bookmarks: set VALUE in push/pull
hgext/bookmarks.py
--- a/hgext/bookmarks.py	Tue Sep 14 16:52:32 2010 +0200
+++ b/hgext/bookmarks.py	Tue Sep 14 21:45:43 2010 -0500
@@ -504,10 +504,12 @@
 
     entry = extensions.wrapcommand(commands.table, 'pull', pull)
     entry[1].append(('B', 'bookmark', [],
-                     _("bookmark to import")))
+                     _("bookmark to import"),
+                     _('BOOKMARK')))
     entry = extensions.wrapcommand(commands.table, 'push', push)
     entry[1].append(('B', 'bookmark', [],
-                     _("bookmark to export")))
+                     _("bookmark to export"),
+                     _('BOOKMARK')))
     entry = extensions.wrapcommand(commands.table, 'incoming', incoming)
     entry[1].append(('B', 'bookmarks', False,
                      _("compare bookmark")))