# HG changeset patch # User Patrick Mezard # Date 2012-05-02 09:43:12 # 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 @@ def rebase(ui, repo, **opts): 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 @@ def buildstate(repo, dest, rebaseset, de 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