From b36a67e5565ef11309fc8a433701e31eafbed547 Mon Sep 17 00:00:00 2001 From: Ian McInerney Date: Fri, 19 Jan 2024 22:23:04 +0000 Subject: [PATCH] Fix missed IO_MGR rename in Python Fixes https://gitlab.com/kicad/code/kicad/-/issues/16669 --- pcbnew/python/swig/footprint.i | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcbnew/python/swig/footprint.i b/pcbnew/python/swig/footprint.i index aa3a45211e..01fe3166b9 100644 --- a/pcbnew/python/swig/footprint.i +++ b/pcbnew/python/swig/footprint.i @@ -142,8 +142,8 @@ %pythoncode %{ def GetPluginForPath(libname): - plugin_type = IO_MGR.GuessPluginTypeFromLibPath( libname ); - return IO_MGR.PluginFind(plugin_type) + plugin_type = PCB_IO_MGR.GuessPluginTypeFromLibPath( libname ); + return PCB_IO_MGR.PluginFind(plugin_type) def FootprintEnumerate(libname): plug = GetPluginForPath(libname)