# HG changeset patch # User Erik Zielke # Date 2010-09-27 07:19:48 # Node ID 552e0cfbddbd1b3f07eae4750ef5057519c644b9 # Parent 3b8ced3e3bbfdce94984cb4e0a01c616450684d4 mq: removed -m from qpush help (Issue2401) The -m option became deprecated in changeset bcf90e712dc3, but the option still appeared in the help line for the qpush command diff --git a/hgext/mq.py b/hgext/mq.py --- a/hgext/mq.py +++ b/hgext/mq.py @@ -2952,7 +2952,7 @@ cmdtable = { ('n', 'name', '', _('merge queue name (DEPRECATED)'), _('NAME')), ('', 'move', None, _('reorder patch series and apply only the patch'))], - _('hg qpush [-f] [-l] [-a] [-m] [-n NAME] [--move] [PATCH | INDEX]')), + _('hg qpush [-f] [-l] [-a] [-n NAME] [--move] [PATCH | INDEX]')), "^qrefresh": (refresh, [('e', 'edit', None, _('edit commit message')),