From 22e8008424e28a9fb2ae712f61554f7d3d151d65 Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Fri, 7 Feb 2025 23:07:28 -0600 Subject: [PATCH] bug fix with null --- plugins/registry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/registry.py b/plugins/registry.py index f374b94..ad0ecd3 100644 --- a/plugins/registry.py +++ b/plugins/registry.py @@ -20,7 +20,7 @@ class Registry : """ self._folder = folder if folder else os.environ.get('REGISTRY_FOLDER',None) - self._filename = os.sep.join([folder,'plugins-registry.json']) + self._filename = os.sep.join([self._folder,'plugins-registry.json']) # self._context = self._folder.split(os.sep)[-1] self._reader = reader self._data = {}