From 2d004b1f55dc40965778312e7f50056639867bb3 Mon Sep 17 00:00:00 2001 From: deepend-tildeclub <58404188+deepend-tildeclub@users.noreply.github.com> Date: Thu, 8 Jan 2026 13:04:30 -0700 Subject: [PATCH] Clean up python plugin configuration Removed commented-out code for the python plugin. --- plugins/meson.build | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/plugins/meson.build b/plugins/meson.build index ce9221b3..e45e4c6c 100644 --- a/plugins/meson.build +++ b/plugins/meson.build @@ -30,11 +30,9 @@ if get_option('with-perl') != 'false' subdir('perl') endif -# Disable broken python plugin for 2.17.0. - -# if get_option('with-python') != 'false' -# subdir('python') -# endif +if get_option('with-python') != 'false' + subdir('python') +endif if get_option('with-sysinfo') subdir('sysinfo')