rebase: add missing EOL to debug strings
authorPatrick Mezard <patrick@mezard.eu>
Wed, 02 May 2012 11:43:12 +0200
changeset 16565 9b7d2ff4b006
parent 16564 979f294dc574
child 16566 ae6dddffe4f1
rebase: add missing EOL to debug strings
hgext/rebase.py
--- a/hgext/rebase.py	Wed May 02 12:55:44 2012 +0200
+++ b/hgext/rebase.py	Wed May 02 11:43:12 2012 +0200
@@ -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