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:
parent
9cc01fec46
commit
00b2efda0d
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue