From 0cc9d8db6875b4c3bc3521fbf6ca2e8ad9e52c90 Mon Sep 17 00:00:00 2001 From: casper Date: Mon, 6 Dec 2021 15:51:19 +0100 Subject: [PATCH] Use existing plugin registry Fix after merge cura 8587 --- plugins/Marketplace/PackageList.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Marketplace/PackageList.py b/plugins/Marketplace/PackageList.py index a9d4e698ed..d50e19d514 100644 --- a/plugins/Marketplace/PackageList.py +++ b/plugins/Marketplace/PackageList.py @@ -54,7 +54,7 @@ class PackageList(ListModel): self._license_model = LicenseModel() - plugin_path = PluginRegistry.getInstance().getPluginPath("Marketplace") + plugin_path = self._plugin_registry.getPluginPath("Marketplace") if plugin_path is None: plugin_path = os.path.dirname(__file__)