diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2009-01-21 03:05:02 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2009-01-21 03:05:02 +0000 |
commit | 3bcf91228018e73a6ab89c31925ad605e71573cf (patch) | |
tree | ef345d3a09b828a13e38c03fce502414166500cf /src/lib/Server/Plugin.py | |
parent | 23c4acb48ec06594557a0dbc7246bb0015345823 (diff) | |
download | bcfg2-3bcf91228018e73a6ab89c31925ad605e71573cf.tar.gz bcfg2-3bcf91228018e73a6ab89c31925ad605e71573cf.tar.bz2 bcfg2-3bcf91228018e73a6ab89c31925ad605e71573cf.zip |
Infrastructure and initial implementation of the Packages plugin
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@5029 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib/Server/Plugin.py')
-rw-r--r-- | src/lib/Server/Plugin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Server/Plugin.py b/src/lib/Server/Plugin.py index 44fbdaac8..6b8c33254 100644 --- a/src/lib/Server/Plugin.py +++ b/src/lib/Server/Plugin.py @@ -50,7 +50,7 @@ class Plugin(object): class Generator(object): '''Generator plugins contribute to literal client configurations''' - def HandlesEntry(self, entry): + def HandlesEntry(self, entry, metadata): '''This is the slow path method for routing configuration binding requests''' return False |