# HG changeset patch # User Patrick Mezard # Date 1335951792 -7200 # Node ID 9b7d2ff4b0062476aa6201f44410eddfbb69b7d5 # Parent 979f294dc574767195b6fece8fbc9064d7a1543d rebase: add missing EOL to debug strings diff -r 979f294dc574 -r 9b7d2ff4b006 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