# HG changeset patch # User Sean Farley # Date 1395678060 18000 # Node ID ec01aa2d088e984188b2663fa83aa5f8d977a0d6 # Parent 7a866bca15dee320a8b26f720be673198e08ec42 maps: remove unneeded __init__ code from tag map diff --git a/hgsubversion/maps.py b/hgsubversion/maps.py --- a/hgsubversion/maps.py +++ b/hgsubversion/maps.py @@ -434,15 +434,7 @@ class TagMap(BaseMap): ''' def __init__(self, meta): - self.meta = meta - self.super = super(TagMap, self) - self.super.__init__() - self.load(self.meta.tagmap_file) - - # append tag mapping specified from the commandline - clmap = util.configpath(self.meta.ui, 'tagmap') - if clmap: - self.load(clmap) + super(TagMap, self).__init__(meta) def load(self, path): '''Load mappings from a file at the specified path.'''