# HG changeset patch # User Patrick Mezard # Date 1354383984 -3600 # Node ID 06d0009b22add80ff509560db8dc819f5625b4ea # Parent cf53cfaaa0505ef59cfe559a644dbe91e4f39c0b updatemeta: add missing EOL to status messages diff --git a/hgsubversion/svncommands.py b/hgsubversion/svncommands.py --- 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')