Show More
@@ -1204,9 +1204,7 b' class queue(object):' | |||
|
1204 | 1204 | diffopts = self.diffopts() |
|
1205 | 1205 | wlock = repo.wlock() |
|
1206 | 1206 | try: |
|
1207 | heads = [] | |
|
1208 | for b, ls in repo.branchmap().iteritems(): | |
|
1209 | heads += ls | |
|
1207 | heads = [h for hs in repo.branchmap().itervalues() for h in hs] | |
|
1210 | 1208 | if not heads: |
|
1211 | 1209 | heads = [nullid] |
|
1212 | 1210 | if repo.dirstate.p1() not in heads and not exact: |
General Comments 0
You need to be logged in to leave comments.
Login now