# HG changeset patch # User Dan Villiom Podlaski Christiansen # Date 1281098620 -7200 # Node ID e4f9603ab82a6473a97306b2e2b76e7c706523cd # Parent ab454ee515d4142ef8fcbedb53d77a0046a258cc verify: add end-of-line to ui.write() calls. It's prettier this way. diff --git a/hgsubversion/svncommands.py b/hgsubversion/svncommands.py --- a/hgsubversion/svncommands.py +++ b/hgsubversion/svncommands.py @@ -61,7 +61,7 @@ def verify(ui, repo, *args, **opts): dmatch = fctx.data() == data mmatch = fctx.flags() == mode if not (dmatch and mmatch): - ui.write('difference in file %s' % fn) + ui.write('difference in file %s\n' % fn) result = 1 hgfiles = set(ctx) @@ -69,7 +69,7 @@ def verify(ui, repo, *args, **opts): hgfiles.discard('.hgsvnexternals') if hgfiles != svnfiles: missing = set(hgfiles).symmetric_difference(svnfiles) - ui.write('missing files: %s' % (', '.join(missing))) + ui.write('missing files: %s\n' % (', '.join(missing))) result = 1 return result