# HG changeset patch # User Patrick Mezard # Date 1350213663 -7200 # Node ID 24fbba02cb8fa8210ac77d35511c55237830358a # Parent c809d9bf42f3790655351cd1b1072c839c4b5719 maps: fix filemap loading --verbose message The m.stri('e') was removing the leading 'e' or 'exclude'. diff --git a/hgsubversion/maps.py b/hgsubversion/maps.py --- 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)