diff hgsubversion/maps.py @ 460:ff69f1855086

tagmap: missed newline in rebuildmeta warn call
author Augie Fackler <durin42@gmail.com>
date Mon, 06 Jul 2009 09:17:26 -0500
parents 974102998578
children 247110c633f7
line wrap: on
line diff
--- 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), ())