Commit 6ba24e9f by Toshio Kuratomi

Remove comment on changing Base.munge => it's used by become.py

parent 63c54035
......@@ -97,9 +97,6 @@ class Base:
def munge(self, ds):
''' infrequently used method to do some pre-processing of legacy terms '''
### FIXME: Can't find any classes with methods named
# _munge_base_class.__name__ so maybe Base.munge should be reduced down
# to return ds
for base_class in self.__class__.mro():
method = getattr(self, "_munge_%s" % base_class.__name__.lower(), None)
if method:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment