From e4b367e909f6298d29bb2f2592e22506421dfca7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Capelle?= Date: Sun, 27 Sep 2020 20:33:30 +0200 Subject: [PATCH] Add IProfile::iniFilePath(). --- src/runner/pythonrunner.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/runner/pythonrunner.cpp b/src/runner/pythonrunner.cpp index b3e17b8..86cbdff 100644 --- a/src/runner/pythonrunner.cpp +++ b/src/runner/pythonrunner.cpp @@ -488,6 +488,7 @@ BOOST_PYTHON_MODULE(mobase) bool active = p->invalidationActive(&supported); return std::make_tuple(active, supported); }) + .def("iniFilePath", &IProfile::iniFilePath, bpy::arg("inifile")) ; bpy::class_("IModRepositoryBridge", bpy::no_init)