1
0
Fork 0
mirror of https://github.com/yweber/lodel2.git synced 2025-10-21 16:49:02 +02:00

Bufixes in fieldtypes

This commit is contained in:
Yann 2015-09-24 11:51:55 +02:00
commit 00b2efda0d
2 changed files with 2 additions and 2 deletions

View file

@ -10,6 +10,6 @@ class EmFieldBool(EmField):
## @brief A char field
# @brief max_length int : The maximum length of this field
def __init__(self, **kwargs):
super(EmFieldChar, self).__init__(**kwargs)
super(EmFieldBool, self).__init__(**kwargs)
fclass=EmFieldBool

View file

@ -11,6 +11,6 @@ class EmFieldFile(EmField):
# @brief max_length int : The maximum length of this field
def __init__(self, upload_path = None,**kwargs):
self.upload_path = upload_path
super(EmFieldChar, self).__init__(**kwargs)
super(EmFieldFile, self).__init__(**kwargs)
fclass=EmFieldFile