# HG changeset patch
# User Patrick Mezard <patrick@mezard.eu>
# Date 1335951792 -7200
#      Wed May 02 11:43:12 2012 +0200
# Node ID 9b7d2ff4b0062476aa6201f44410eddfbb69b7d5
# Parent  979f294dc574767195b6fece8fbc9064d7a1543d
rebase: add missing EOL to debug strings

diff --git a/hgext/rebase.py b/hgext/rebase.py
--- a/hgext/rebase.py
+++ b/hgext/rebase.py
@@ -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