diff options
author | Sol Jerome <sol.jerome@gmail.com> | 2011-03-28 11:41:56 -0500 |
---|---|---|
committer | Sol Jerome <sol.jerome@gmail.com> | 2011-03-28 11:41:56 -0500 |
commit | cb770fdfebb4d196c45cbff524715fd5d1d8a0a5 (patch) | |
tree | e849b777847badd95ea4224f8ea0e129db0bcbb8 /doc | |
parent | 2d8c28f5e4a08dd50f01eacb53af77dc61397516 (diff) | |
download | bcfg2-cb770fdfebb4d196c45cbff524715fd5d1d8a0a5.tar.gz bcfg2-cb770fdfebb4d196c45cbff524715fd5d1d8a0a5.tar.bz2 bcfg2-cb770fdfebb4d196c45cbff524715fd5d1d8a0a5.zip |
doc: Typo fix from euth
Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/development/plugins.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/development/plugins.txt b/doc/development/plugins.txt index 709b9fcec..4c723f7e9 100644 --- a/doc/development/plugins.txt +++ b/doc/development/plugins.txt @@ -139,7 +139,7 @@ Example Plugin __version__ = '1' __author__ = 'me@me.com' __rmi__ = ['myfunction'] - # myfunction is not available remotely as MyPlugin.myfunction + # myfunction is now available remotely as MyPlugin.myfunction def __init__(self, core, datastore): Bcfg2.Server.Plugin.Plugin.__init__(self, core, datastore) @@ -206,8 +206,8 @@ do so. We will call our new plugin `MyMetadata`. __version__ = '$Id$' __author__ = 'bcfg-dev@mcs.anl.gov' - def __init__(self, core, datastore, watch_clients=True): - Bcfg2.Server.Plugins.Metadata.Metadata.__init__(self, core, datastore, watch_clients) + def __init__(self, core, datastore, watch_clients=True): + Bcfg2.Server.Plugins.Metadata.Metadata.__init__(self, core, datastore, watch_clients) #. Add MyMetadata to ``src/lib/Server/Plugins/__init__.py`` #. Replace Metadata with MyMetadata in the plugins line of bcfg2.conf |