##// END OF EJS Templates
graft: fix duplicate scan message
Matt Mackall -
r15359:a5a8adf9 stable
parent child Browse files
Show More
@@ -2548,7 +2548,7 b' def graft(ui, repo, *revs, **opts):'
2548 return -1
2548 return -1
2549
2549
2550 # check ancestors for earlier grafts
2550 # check ancestors for earlier grafts
2551 ui.debug('scanning for existing transplants')
2551 ui.debug('scanning for duplicate grafts\n')
2552 for ctx in repo.set("::. - ::%ld", revs):
2552 for ctx in repo.set("::. - ::%ld", revs):
2553 n = ctx.extra().get('source')
2553 n = ctx.extra().get('source')
2554 if n and n in repo:
2554 if n and n in repo:
General Comments 0
You need to be logged in to leave comments. Login now