summaryrefslogtreecommitdiff
path: root/python/platform.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/platform.py')
-rw-r--r--python/platform.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/platform.py b/python/platform.py
index 2d061172..2091e1d1 100644
--- a/python/platform.py
+++ b/python/platform.py
@@ -296,7 +296,7 @@ class Platform(with_metaclass(_PlatformMetaClass, object)):
core.BNFreeTypeLibraryList(libs, count.value)
return result
- def type_libraries_by_name(self, name):
+ def get_type_libraries_by_name(self, name):
count = ctypes.c_ulonglong(0)
libs = core.BNGetPlatformTypeLibrariesByName(self.handle, name, count)
result = []