mirror of
https://github.com/yweber/lodel2.git
synced 2026-06-14 06:20:48 +02:00
Modification d'un nom de fonction (passage en lowercase)
This commit is contained in:
parent
e87fa84eac
commit
bbaa20c8ba
1 changed files with 2 additions and 2 deletions
|
|
@ -111,14 +111,14 @@ class EmField(EmComponent):
|
|||
#
|
||||
# @return Name of the table
|
||||
def get_class_table(self):
|
||||
return self._get_class_tableDb()
|
||||
return self._get_class_table_db()
|
||||
|
||||
## _get_class_tableDb (Function)
|
||||
#
|
||||
# Executes a request to the database to get the name of the table in which to add the field
|
||||
#
|
||||
# @return Name of the table
|
||||
def _get_class_tableDb(self):
|
||||
def _get_class_table_db(self):
|
||||
dbe = self.getDbE()
|
||||
conn = dbe.connect()
|
||||
fieldtable = sql.Table(EmField.table, sqlutils.meta(dbe))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue