From a335adf9288179ba714b18888c0260a15973d445 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Capelle?= Date: Sat, 21 Nov 2020 13:45:30 +0100 Subject: [PATCH] Add argument name to IPluginRequirement::check(). --- src/runner/pythonrunner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runner/pythonrunner.cpp b/src/runner/pythonrunner.cpp index b5cf1d2..e31ae20 100644 --- a/src/runner/pythonrunner.cpp +++ b/src/runner/pythonrunner.cpp @@ -286,7 +286,7 @@ BOOST_PYTHON_MODULE(mobase) .def("longDescription", &IPluginRequirement::Problem::longDescription); iPluginRequirementClass - .def("check", bpy::pure_virtual(&IPluginRequirement::check)) + .def("check", bpy::pure_virtual(&IPluginRequirement::check), bpy::arg("organizer")) ; }