Mercurial > hgsubversion
changeset 271:5278817fe8a1
Add newlines to ui.status calls where needed
author | Daniel Tang <dytang@cs.purdue.edu> |
---|---|
date | Tue, 21 Apr 2009 18:31:17 -0400 |
parents | 2848d17eae71 |
children | 25d843281127 |
files | wrappers.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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()