From 9cd312417ee816452fc0654f412125bf4f548b97 Mon Sep 17 00:00:00 2001 From: Patrick Mezard Date: Sun, 14 Oct 2012 13:21:03 +0200 Subject: [PATCH] maps: fix filemap loading --verbose message The m.stri('e') was removing the leading 'e' or 'exclude'. --- hgsubversion/maps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hgsubversion/maps.py b/hgsubversion/maps.py index 5c25c9d406..43601fd1a5 100644 --- a/hgsubversion/maps.py +++ b/hgsubversion/maps.py @@ -323,7 +323,7 @@ class FileMap(object): msg = 'duplicate %s entry in %s: "%s"\n' self.ui.status(msg % (m, fn, path)) return - bits = m.strip('e'), path + bits = m.rstrip('e'), path self.ui.debug('%sing %s\n' % bits) # respect rule order mapping[path] = len(self)