summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Plugin.py
diff options
context:
space:
mode:
authorSol Jerome <sol.jerome@gmail.com>2012-03-17 16:00:38 -0500
committerSol Jerome <sol.jerome@gmail.com>2012-03-17 16:00:38 -0500
commit60c79ef728f1d932e8da8583e2719b6acd900d9e (patch)
treef385e04757261072456161d2c4b1cf0033b0e8ee /src/lib/Server/Plugin.py
parent9f85b8af0ccf2c90aa5d806dd7baefab68237f3a (diff)
parent8a45b809eaef80d3cff337e54f3ec3aa0bbaa62a (diff)
downloadbcfg2-60c79ef728f1d932e8da8583e2719b6acd900d9e.tar.gz
bcfg2-60c79ef728f1d932e8da8583e2719b6acd900d9e.tar.bz2
bcfg2-60c79ef728f1d932e8da8583e2719b6acd900d9e.zip
Merge branch 'fix-svn-keywords'
Diffstat (limited to 'src/lib/Server/Plugin.py')
-rw-r--r--src/lib/Server/Plugin.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/lib/Server/Plugin.py b/src/lib/Server/Plugin.py
index 1ceed702d..e66c23b2b 100644
--- a/src/lib/Server/Plugin.py
+++ b/src/lib/Server/Plugin.py
@@ -1,5 +1,4 @@
"""This module provides the baseclass for Bcfg2 Server Plugins."""
-__revision__ = '$Revision$'
import copy
import logging
@@ -85,7 +84,6 @@ class Plugin(Debuggable):
"""This is the base class for all Bcfg2 Server plugins.
Several attributes must be defined in the subclass:
name : the name of the plugin
- __version__ : a version string
__author__ : the author/contact for the plugin
Plugins can provide three basic types of functionality:
@@ -94,7 +92,6 @@ class Plugin(Debuggable):
- Data collection (overloading GetProbes/ReceiveData)
"""
name = 'Plugin'
- __version__ = '$Id$'
__author__ = 'bcfg-dev@mcs.anl.gov'
experimental = False
deprecated = False
@@ -1094,7 +1091,6 @@ class EntrySet:
class GroupSpool(Plugin, Generator):
"""Unified interface for handling group-specific data (e.g. .G## files)."""
name = 'GroupSpool'
- __version__ = '$Id$'
__author__ = 'bcfg-dev@mcs.anl.gov'
filename_pattern = ""
es_child_cls = object