# HG changeset patch # User Augie Fackler # Date 1465188557 14400 # Node ID cbad7285cbebb3280fc810e06f7e9a4b0e45172a # Parent a6fa4f3aa82620ea448849c23b4b15a377241870 BaseMap: jettison now-unused filename-attribute magic diff --git a/hgsubversion/maps.py b/hgsubversion/maps.py --- a/hgsubversion/maps.py +++ b/hgsubversion/maps.py @@ -34,13 +34,6 @@ class BaseMap(dict): def mapname(cls): return cls.__name__.lower() - @classmethod - def defaultfilenameattr(cls): - # trickery: all subclasses have the same name as their file and config - # names, e.g. AuthorMap is meta.authormap_file for the filename and - # 'authormap' for the config option - return cls.mapname() + '_file' - def _findkey(self, key): '''Takes a string and finds the first corresponding key that matches via regex'''