1
0
Fork 0
mirror of https://github.com/yweber/lodel2.git synced 2025-11-21 05:09:16 +01:00

Changed classcmethod to classmethod in datahandlers/bases_classes in name function

This commit is contained in:
m.orban 2016-07-21 13:57:11 +02:00
commit a759ca3572

View file

@ -58,7 +58,7 @@ class DataHandler(object):
setattr(self, argname, argval)
## Fieldtype name
@classcmethod
@classmethod
def name(cls):
return cls.__module__.split('.')[-1]