From bbaa20c8bafd686bfb4d5a673163f63defeb8dd9 Mon Sep 17 00:00:00 2001 From: Roland Haroutiounian Date: Wed, 1 Jul 2015 09:49:29 +0200 Subject: [PATCH] Modification d'un nom de fonction (passage en lowercase) --- EditorialModel/fields.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EditorialModel/fields.py b/EditorialModel/fields.py index 91359ab..a6fec91 100644 --- a/EditorialModel/fields.py +++ b/EditorialModel/fields.py @@ -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))