changeset 1392:ec01aa2d088e

maps: remove unneeded __init__ code from tag map
author Sean Farley <sean.michael.farley@gmail.com>
date Mon, 24 Mar 2014 11:21:00 -0500
parents 7a866bca15de
children f53a27e4e0d3
files hgsubversion/maps.py
diffstat 1 files changed, 1 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- 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.'''