summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugins/Decisions.py
diff options
context:
space:
mode:
authorSol Jerome <sol.jerome@gmail.com>2014-10-13 21:21:19 -0500
committerSol Jerome <sol.jerome@gmail.com>2014-10-13 21:22:35 -0500
commit0e917a2e5a66e5826dc0bfaedd58ec3a1b828fd1 (patch)
tree82a871a60ab2fd4c3b7a529ab9e3697e215d6961 /src/lib/Bcfg2/Server/Plugins/Decisions.py
parent2fe0d859d26a5bbd6ec6cadd44de47ed7d9d5acd (diff)
downloadbcfg2-0e917a2e5a66e5826dc0bfaedd58ec3a1b828fd1.tar.gz
bcfg2-0e917a2e5a66e5826dc0bfaedd58ec3a1b828fd1.tar.bz2
bcfg2-0e917a2e5a66e5826dc0bfaedd58ec3a1b828fd1.zip
Server/Plugins/Decisions: fix typo
Modified from github #204. Thanks to Alexander Sulfrain. Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
Diffstat (limited to 'src/lib/Bcfg2/Server/Plugins/Decisions.py')
-rw-r--r--src/lib/Bcfg2/Server/Plugins/Decisions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Bcfg2/Server/Plugins/Decisions.py b/src/lib/Bcfg2/Server/Plugins/Decisions.py
index 3d3ef8f8c..b30a9acea 100644
--- a/src/lib/Bcfg2/Server/Plugins/Decisions.py
+++ b/src/lib/Bcfg2/Server/Plugins/Decisions.py
@@ -31,4 +31,4 @@ class Decisions(Bcfg2.Server.Plugin.Plugin,
self.blacklist = DecisionFile(os.path.join(self.data, "blacklist.xml"))
def GetDecisions(self, metadata, mode):
- return getattr(self, mode).get_decision(metadata)
+ return getattr(self, mode).get_decisions(metadata)