qfinish: fix range logic for --applied
authorMatt Mackall <mpm@selenic.com>
Sun, 01 Aug 2010 16:02:56 -0500
changeset 11730 7469ff872122
parent 11729 c91b86a291b0
child 11733 b43cfaf571d6
qfinish: fix range logic for --applied qbase:qtip can include non-mq csets, use qbase::qtip instead
hgext/mq.py
--- a/hgext/mq.py	Tue Jul 20 20:53:48 2010 +0200
+++ b/hgext/mq.py	Sun Aug 01 16:02:56 2010 -0500
@@ -2574,7 +2574,7 @@
     if not opts['applied'] and not revrange:
         raise util.Abort(_('no revisions specified'))
     elif opts['applied']:
-        revrange = ('qbase:qtip',) + revrange
+        revrange = ('qbase::qtip',) + revrange
 
     q = repo.mq
     if not q.applied: