# HG changeset patch # User Augie Fackler # Date 1465188486 14400 # Node ID e745b543db059f9b6a7a7c3ba8bba55c8e8df43b # Parent 887430c1b8abf3c23d02367f8f8ab1a0299df073 TagMap: no longer take a meta diff --git a/hgsubversion/maps.py b/hgsubversion/maps.py --- a/hgsubversion/maps.py +++ b/hgsubversion/maps.py @@ -613,6 +613,3 @@ class TagMap(BaseMap): The oldname tag from SVN will be represented as newname in the hg tags; the other tag will not be reflected in the hg repository. ''' - def __init__(self, meta): - super(TagMap, self).__init__( - meta.ui, meta.__getattribute__(self.defaultfilenameattr)) diff --git a/hgsubversion/svnmeta.py b/hgsubversion/svnmeta.py --- a/hgsubversion/svnmeta.py +++ b/hgsubversion/svnmeta.py @@ -335,7 +335,7 @@ class SVNMeta(object): @property def tagmap(self): if self._tagmap is None: - self._tagmap = maps.TagMap(self) + self._tagmap = maps.TagMap(self.ui, self.tagmap_file) return self._tagmap @property