forked from mirrors/linphone-iphone
Fix *_ref(), *_unref(), *_destroy() appearing in the Python wrapper.
This commit is contained in:
parent
f0e0f1a9d5
commit
0cc70b04ab
1 changed files with 1 additions and 1 deletions
|
|
@ -784,7 +784,7 @@ class LinphoneModule(object):
|
|||
method_name = xml_instance_method.get('name')
|
||||
if method_name in blacklisted_functions:
|
||||
continue
|
||||
if method_name in self.internal_instance_method_names:
|
||||
if method_name.replace(c['class_c_function_prefix'], '') in self.internal_instance_method_names:
|
||||
continue
|
||||
m = {}
|
||||
m['method_name'] = method_name.replace(c['class_c_function_prefix'], '')
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue