Browse Source

Modification d'un nom de fonction (passage en lowercase)

Roland Haroutiounian 9 years ago
parent
commit
bbaa20c8ba
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      EditorialModel/fields.py

+ 2
- 2
EditorialModel/fields.py View File

111
     #
111
     #
112
     # @return Name of the table
112
     # @return Name of the table
113
     def get_class_table(self):
113
     def get_class_table(self):
114
-        return self._get_class_tableDb()
114
+        return self._get_class_table_db()
115
 
115
 
116
     ## _get_class_tableDb (Function)
116
     ## _get_class_tableDb (Function)
117
     #
117
     #
118
     # Executes a request to the database to get the name of the table in which to add the field
118
     # Executes a request to the database to get the name of the table in which to add the field
119
     #
119
     #
120
     # @return Name of the table
120
     # @return Name of the table
121
-    def _get_class_tableDb(self):
121
+    def _get_class_table_db(self):
122
         dbe = self.getDbE()
122
         dbe = self.getDbE()
123
         conn = dbe.connect()
123
         conn = dbe.connect()
124
         fieldtable = sql.Table(EmField.table, sqlutils.meta(dbe))
124
         fieldtable = sql.Table(EmField.table, sqlutils.meta(dbe))

Loading…
Cancel
Save