summaryrefslogtreecommitdiffstats
path: root/openstack/common/plugin
diff options
context:
space:
mode:
Diffstat (limited to 'openstack/common/plugin')
-rw-r--r--openstack/common/plugin/callbackplugin.py2
-rw-r--r--openstack/common/plugin/pluginmanager.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/openstack/common/plugin/callbackplugin.py b/openstack/common/plugin/callbackplugin.py
index fead44c..2de7fb0 100644
--- a/openstack/common/plugin/callbackplugin.py
+++ b/openstack/common/plugin/callbackplugin.py
@@ -58,7 +58,7 @@ class _CallbackNotifier(object):
class CallbackPlugin(plugin.Plugin):
- """ Plugin with a simple callback interface.
+ """Plugin with a simple callback interface.
This class is provided as a convenience for producing a simple
plugin that only watches a couple of events. For example, here's
diff --git a/openstack/common/plugin/pluginmanager.py b/openstack/common/plugin/pluginmanager.py
index 56064dd..3962447 100644
--- a/openstack/common/plugin/pluginmanager.py
+++ b/openstack/common/plugin/pluginmanager.py
@@ -41,7 +41,7 @@ class PluginManager(object):
"""
def __init__(self, project_name, service_name):
- """ Construct Plugin Manager; load and initialize plugins.
+ """Construct Plugin Manager; load and initialize plugins.
project_name (e.g. 'nova' or 'glance') is used
to construct the entry point that identifies plugins.