changeset 654:e4f9603ab82a

verify: add end-of-line to ui.write() calls. It's prettier this way.
author Dan Villiom Podlaski Christiansen <danchr@gmail.com>
date Fri, 06 Aug 2010 14:43:40 +0200
parents ab454ee515d4
children dcac6dc1abe6
files hgsubversion/svncommands.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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