Skip to content
Snippets Groups Projects
Commit 9b7d2ff4b006 authored by Patrick Mézard's avatar Patrick Mézard
Browse files

rebase: add missing EOL to debug strings

parent 979f294dc574
No related branches found
No related tags found
No related merge requests found
......@@ -201,7 +201,7 @@
root = None
if not rebaseset:
repo.ui.debug('base is ancestor of destination')
repo.ui.debug('base is ancestor of destination\n')
result = None
elif not keepf and list(repo.revs('first(children(%ld) - %ld)',
rebaseset, rebaseset)):
......@@ -618,7 +618,7 @@
if commonbase == dest:
samebranch = root.branch() == dest.branch()
if samebranch and root in dest.children():
repo.ui.debug('source is a child of destination')
repo.ui.debug('source is a child of destination\n')
return None
# rebase on ancestor, force detach
detach = True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment