[PATCH STABLE] mq: fix qapplied --last documentation (issue3282)
Patrick Mezard
patrick at mezard.eu
Mon Feb 27 12:38:46 UTC 2012
# HG changeset patch
# User Patrick Mezard <patrick at mezard.eu>
# Date 1330346077 -3600
# Branch stable
# Node ID 2c53a0509b031d67da977b7de9a854c7b986b8f6
# Parent 280e834c9d15b0d65a0ee24374671e0cd2147f4e
mq: fix qapplied --last documentation (issue3282)
qapplied --last is qprev not qtop.
diff --git a/hgext/mq.py b/hgext/mq.py
--- a/hgext/mq.py
+++ b/hgext/mq.py
@@ -1929,7 +1929,7 @@
return 0
@command("qapplied",
- [('1', 'last', None, _('show only the last patch'))
+ [('1', 'last', None, _('show only the previous applied patch'))
] + seriesopts,
_('hg qapplied [-1] [-s] [PATCH]'))
def applied(ui, repo, patch=None, **opts):
More information about the Mercurial-devel
mailing list