Browse Source

rel2type.insert() : return the id of inserted relation

ArnAud 9 years ago
parent
commit
07c18a9093
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      leapi/lerelation.py

+ 1
- 1
leapi/lerelation.py View File

@@ -161,7 +161,7 @@ class _LeRel2Type(_LeRelation):
161 161
         if cls == cls.name2class('LeRel2Type') and classname is None:
162 162
             # autodetect the rel2type child class
163 163
             classname = relname(datas['lesup'], datas['lesub'])
164
-        super().insert(datas, classname)
164
+        return super().insert(datas, classname)
165 165
 
166 166
     ## @brief Given a superior and a subordinate, returns the classname of the give rel2type
167 167
     # @param lesupclass LeClass : LeClass child class (not an instance) (can be a LeType or a LeClass child)

Loading…
Cancel
Save