From 331416d1e727642f7abd5a7756b3df07ea0df0bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Capelle?= Date: Tue, 14 Jul 2020 16:39:45 +0200 Subject: [PATCH] Add binding for IInstallationManager::getSupportedExtensions(). --- src/runner/pythonrunner.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/runner/pythonrunner.cpp b/src/runner/pythonrunner.cpp index a2d9931..1d3730c 100644 --- a/src/runner/pythonrunner.cpp +++ b/src/runner/pythonrunner.cpp @@ -524,6 +524,7 @@ BOOST_PYTHON_MODULE(mobase) ; bpy::class_("IInstallationManager", bpy::no_init) + .def("getSupportedExtensions", &IInstallationManager::getSupportedExtensions) .def("extractFile", &IInstallationManager::extractFile, (bpy::arg("entry"), bpy::arg("silent") = false)) .def("extractFiles", &IInstallationManager::extractFiles, (bpy::arg("entries"), bpy::arg("silent") = false)) .def("createFile", &IInstallationManager::createFile, bpy::arg("entry"))