# HG changeset patch # User Sean Farley # Date 1395678059 18000 # Node ID 8bd40916106f9fc5b952e7f165affda0e56d7515 # Parent 9139d9295a36f8fdbd09b71c8bcf0d67f5a3d053 maps: remove unneeded __init__ code from author map diff --git a/hgsubversion/maps.py b/hgsubversion/maps.py --- a/hgsubversion/maps.py +++ b/hgsubversion/maps.py @@ -91,19 +91,11 @@ class AuthorMap(BaseMap): The path argument is the location of the backing store, typically .hg/svn/authors. ''' - self.meta = meta self.defaulthost = '' if meta.defaulthost: self.defaulthost = '@%s' % meta.defaulthost.lstrip('@') - self.super = super(AuthorMap, self) - self.super.__init__() - self.load(self.meta.authormap_file) - - # append authors specified from the commandline - clmap = util.configpath(self.meta.ui, 'authormap') - if clmap: - self.load(clmap) + super(AuthorMap, self).__init__(meta) def load(self, path): ''' Load mappings from a file at the specified path. '''