summaryrefslogtreecommitdiff
path: root/python/pluginmanager.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2021-03-17 10:36:04 -0400
committerPeter LaFosse <peter@vector35.com>2021-03-19 11:15:11 -0400
commitcf2a9769397faab4d2158b9ad756d0362441ecf7 (patch)
tree81311396d1e211a2daa34dc84497eba67d84e13d /python/pluginmanager.py
parent17fff9c72f0f84c69ce31c8522eb67f9b68a128f (diff)
Minor spelling fixes
Diffstat (limited to 'python/pluginmanager.py')
-rw-r--r--python/pluginmanager.py6
1 files changed, 3 insertions, 3 deletions
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):