From cf2a9769397faab4d2158b9ad756d0362441ecf7 Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Wed, 17 Mar 2021 10:36:04 -0400 Subject: Minor spelling fixes --- python/pluginmanager.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'python/pluginmanager.py') diff --git a/python/pluginmanager.py b/python/pluginmanager.py index 1f38a386..109876e3 100644 --- a/python/pluginmanager.py +++ b/python/pluginmanager.py @@ -323,10 +323,10 @@ class RepositoryManager(object): @property def plugins(self): """List of all RepoPlugins in each repository""" - plgs = {} + plugin_list = {} for repo in self.repositories: - plgs[repo.path] = repo.plugins - return plgs + plugin_list[repo.path] = repo.plugins + return plugin_list @property def default_repository(self): -- cgit v1.3.1