summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike McCallister <mike@mccllstr.com>2011-07-23 23:51:13 -0500
committerMike McCallister <mike@mccllstr.com>2011-07-23 23:51:13 -0500
commit7e06e71fb12413b5179a151a99fcfea94ee004d7 (patch)
tree1c1ac4e446fdac778019a3447007dcd335389099
parent0b69a35bb21341d006a1463f8683d249eae3229a (diff)
downloadbcfg2-7e06e71fb12413b5179a151a99fcfea94ee004d7.tar.gz
bcfg2-7e06e71fb12413b5179a151a99fcfea94ee004d7.tar.bz2
bcfg2-7e06e71fb12413b5179a151a99fcfea94ee004d7.zip
Added docstring to explain what 'datastore' argument contains.
-rw-r--r--src/lib/Server/Plugin.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/Server/Plugin.py b/src/lib/Server/Plugin.py
index 108e2d89f..70ab64df0 100644
--- a/src/lib/Server/Plugin.py
+++ b/src/lib/Server/Plugin.py
@@ -87,6 +87,11 @@ class Plugin(object):
sort_order = 500
def __init__(self, core, datastore):
+ """Initialize the plugin.
+
+ :param core: the Bcfg2.Server.Core initializing the plugin
+ :param datastore: the filesystem path of Bcfg2's repository
+ """
object.__init__(self)
self.Entries = {}
self.core = core