# HG changeset patch # User Augie Fackler # Date 1246889846 18000 # Node ID ff69f18550866e6a06324e2aea7f06ccbcfe910c # Parent 7151f63ab33c80232586742d19639bb3b5f78cb9 tagmap: missed newline in rebuildmeta warn call diff --git a/hgsubversion/maps.py b/hgsubversion/maps.py --- a/hgsubversion/maps.py +++ b/hgsubversion/maps.py @@ -119,7 +119,7 @@ class TagMap(dict): f = open(self.path) ver = int(f.readline()) if ver < self.VERSION: - repo.ui.warn('tag map outdated, running rebuildmeta...') + repo.ui.warn('tag map outdated, running rebuildmeta...\n') f.close() os.unlink(self.path) svncommands.rebuildmeta(repo.ui, repo, os.path.dirname(repo.path), ())