Browse Source

[#11] Nettoyage de code

Roland Haroutiounian 9 years ago
parent
commit
4b32798c49
1 changed files with 5 additions and 5 deletions
  1. 5
    5
      EditorialModel/fields.py

+ 5
- 5
EditorialModel/fields.py View File

12
 
12
 
13
 logger = logging.getLogger('Lodel2.EditorialModel')
13
 logger = logging.getLogger('Lodel2.EditorialModel')
14
 
14
 
15
-"""Represent one data for a lodel2 document"""
15
+## EmField (Class)
16
+#
17
+# Represents one data for a lodel2 document
16
 class EmField(EmComponent):
18
 class EmField(EmComponent):
17
 
19
 
18
     table = 'em_field'
20
     table = 'em_field'
78
     # @param emField EmField: the object representing the field
80
     # @param emField EmField: the object representing the field
79
     # @return True in case of success, False if not
81
     # @return True in case of success, False if not
80
     @classmethod
82
     @classmethod
81
-    def addFieldColumnToClassTable(cls, emField):
83
+    def addFieldColumnToClassTable(c, emField):
82
         field_type = EditorialModel.fieldtypes.get_field_type(emField.em_fieldtype)
84
         field_type = EditorialModel.fieldtypes.get_field_type(emField.em_fieldtype)
83
         field_sqlalchemy_args = field_type.sqlalchemy_args()
85
         field_sqlalchemy_args = field_type.sqlalchemy_args()
84
         field_sqlalchemy_args['name'] = emField.name
86
         field_sqlalchemy_args['name'] = emField.name
111
         query_builder.From(uidtable)
113
         query_builder.From(uidtable)
112
         query_builder.Where('uids.uid=%s' % self.uid)
114
         query_builder.Where('uids.uid=%s' % self.uid)
113
 
115
 
114
-        records = query.Execute().fetchall()
116
+        records = query_builder.Execute().fetchall()
115
         table_records = []
117
         table_records = []
116
         for record in records:
118
         for record in records:
117
             table_records.append(dict(zip(record.keys(), record)))
119
             table_records.append(dict(zip(record.keys(), record)))
155
 
157
 
156
         return super(EmField, self).save(values)
158
         return super(EmField, self).save(values)
157
 
159
 
158
-class EmFieldNotExistError(Exception):
159
-    pass

Loading…
Cancel
Save