##// END OF EJS Templates
rebase: remove extra "if" from check of collapsing named branches
Yuya Nishihara -
r27261:986d04b9 default
parent child Browse files
Show More
@@ -386,8 +386,7 b' def rebase(ui, repo, **opts):'
386 if dest.closesbranch() and not keepbranchesf:
386 if dest.closesbranch() and not keepbranchesf:
387 ui.status(_('reopening closed branch head %s\n') % dest)
387 ui.status(_('reopening closed branch head %s\n') % dest)
388
388
389 if keepbranchesf:
389 if keepbranchesf and collapsef:
390 if collapsef:
391 branches = set()
390 branches = set()
392 for rev in state:
391 for rev in state:
393 branches.add(repo[rev].branch())
392 branches.add(repo[rev].branch())
General Comments 0
You need to be logged in to leave comments. Login now