1
0
Fork 0
mirror of https://github.com/yweber/lodel2.git synced 2026-06-13 22:20:47 +02:00

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

This commit is contained in:
Roland Haroutiounian 2015-07-01 09:49:29 +02:00
commit bbaa20c8ba

View file

@ -111,14 +111,14 @@ class EmField(EmComponent):
# #
# @return Name of the table # @return Name of the table
def get_class_table(self): def get_class_table(self):
return self._get_class_tableDb() return self._get_class_table_db()
## _get_class_tableDb (Function) ## _get_class_tableDb (Function)
# #
# Executes a request to the database to get the name of the table in which to add the field # Executes a request to the database to get the name of the table in which to add the field
# #
# @return Name of the table # @return Name of the table
def _get_class_tableDb(self): def _get_class_table_db(self):
dbe = self.getDbE() dbe = self.getDbE()
conn = dbe.connect() conn = dbe.connect()
fieldtable = sql.Table(EmField.table, sqlutils.meta(dbe)) fieldtable = sql.Table(EmField.table, sqlutils.meta(dbe))