changeset 988:06d0009b22ad

updatemeta: add missing EOL to status messages
author Patrick Mezard <patrick@mezard.eu>
date Sat, 01 Dec 2012 18:46:24 +0100
parents cf53cfaaa050
children 68191be64af8
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
@@ -80,9 +80,9 @@ def _buildmeta(ui, repo, args, partial=F
         except IOError, err:
             if err.errno != errno.ENOENT:
                 raise
-            ui.status('missing some metadata -- doing a full rebuild')
+            ui.status('missing some metadata -- doing a full rebuild\n')
         except AttributeError:
-            ui.status('no metadata available -- doing a full rebuild')
+            ui.status('no metadata available -- doing a full rebuild\n')
 
 
     lastpulled = open(os.path.join(svnmetadir, 'lastpulled'), 'wb')