Mercurial > public > mercurial-scm > hg-stable
diff hgext/mq.py @ 3874:e88d03c2a3d9
mq: fix qheader without args when guards are applied after qtop
author | Brendan Cully <brendan@kublai.com> |
---|---|
date | Tue, 12 Dec 2006 12:40:51 -0800 |
parents | 7a4749c5bbcb |
children | abaee83ce0a6 733d56b8830f |
line wrap: on
line diff
--- a/hgext/mq.py Tue Dec 12 19:11:01 2006 +0100 +++ b/hgext/mq.py Tue Dec 12 12:40:51 2006 -0800 @@ -744,7 +744,7 @@ return matches[0] if len(self.series) > 0 and len(self.applied) > 0: if s == 'qtip': - return self.series[self.series_end()-1] + return self.series[self.series_end(True)-1] if s == 'qbase': return self.series[0] return None