# HG changeset patch # User Daniel Tang # Date 1240353077 14400 # Node ID 5278817fe8a18d2cc958a1ba4e0a8ed13e609964 # Parent 2848d17eae71ae2066b78f8b2fce9a85a0413e61 Add newlines to ui.status calls where needed diff --git a/wrappers.py b/wrappers.py --- a/wrappers.py +++ b/wrappers.py @@ -103,7 +103,7 @@ def push(orig, ui, repo, dest=None, *arg # Strategy: # 1. Find all outgoing commits from this head if len(repo.parents()) != 1: - ui.status('Cowardly refusing to push branch merge') + ui.status('Cowardly refusing to push branch merge\n') return 1 workingrev = repo.parents()[0] ui.status('searching for changes\n') @@ -116,7 +116,7 @@ def push(orig, ui, repo, dest=None, *arg old_ctx = repo[oldest] if len(old_ctx.parents()) != 1: ui.status('Found a branch merge, this needs discussion and ' - 'implementation.') + 'implementation.\n') return 1 base_n = old_ctx.parents()[0].node() old_children = repo[base_n].children()