Show More
@@ -148,8 +148,9 b' def filterunknown(repo, phaseroots=None)' | |||||
148 | missing = [node for node in nodes if node not in nodemap] |
|
148 | missing = [node for node in nodes if node not in nodemap] | |
149 | if missing: |
|
149 | if missing: | |
150 | for mnode in missing: |
|
150 | for mnode in missing: | |
151 | msg = 'Removing unknown node %(n)s from %(p)i-phase boundary' |
|
151 | repo.ui.debug( | |
152 | repo.ui.debug(msg, {'n': short(mnode), 'p': phase}) |
|
152 | 'removing unknown node %s from %i-phase boundary\n' | |
|
153 | % (short(mnode), phase)) | |||
153 | nodes.symmetric_difference_update(missing) |
|
154 | nodes.symmetric_difference_update(missing) | |
154 | repo._dirtyphases = True |
|
155 | repo._dirtyphases = True | |
155 |
|
156 |
General Comments 0
You need to be logged in to leave comments.
Login now