Mercurial > hgsubversion
changeset 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 | 7151f63ab33c |
children | db3a53a2cd76 |
files | hgsubversion/maps.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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), ())