|
@@ -67,11 +67,7 @@ def connect(host, port, db_name, username, password):
|
67
|
67
|
# @param class_object EmClass
|
68
|
68
|
# @return str
|
69
|
69
|
def object_collection_name(class_object):
|
70
|
|
- if class_object.abstract:
|
71
|
|
- return class_object.__name__
|
72
|
|
- else:
|
73
|
|
- return object_collection_name(class_object.__base__)
|
74
|
|
-
|
|
70
|
+ return class_object.__name__
|
75
|
71
|
|
76
|
72
|
## @brief Determine a collection field name given a lodel2 fieldname
|
77
|
73
|
# @note For the moment this method only return the argument but EVERYWHERE
|