changeset 12302:6ad36bca3a8a

bookmarks: set VALUE in push/pull
author Will Maier <willmaier@ml1.net>
date Tue, 14 Sep 2010 21:45:43 -0500
parents 3a082866422a
children 4ab87473029d
files hgext/bookmarks.py
diffstat 1 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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")))