changeset 19916 | fb583a1efef0 |
parent 19856 | 28b1b7b9b4a9 |
child 19951 | d51c4d85ec23 |
--- a/hgext/mq.py Sat Oct 19 14:21:05 2013 -0700 +++ b/hgext/mq.py Mon Apr 01 20:01:16 2013 -0700 @@ -1204,9 +1204,7 @@ diffopts = self.diffopts() wlock = repo.wlock() try: - heads = [] - for b, ls in repo.branchmap().iteritems(): - heads += ls + heads = [h for hs in repo.branchmap().itervalues() for h in hs] if not heads: heads = [nullid] if repo.dirstate.p1() not in heads and not exact: