summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2009-02-09 16:41:33 +0000
committerNarayan Desai <desai@mcs.anl.gov>2009-02-09 16:41:33 +0000
commit6cc7242be3e7c82f1ee473a1b85d06a5a23aa172 (patch)
treee8c3c6312eedc2e09d8277304daa139881026a11
parent35e8f3516fc4be9356755349abd39267fc591b94 (diff)
downloadbcfg2-6cc7242be3e7c82f1ee473a1b85d06a5a23aa172.tar.gz
bcfg2-6cc7242be3e7c82f1ee473a1b85d06a5a23aa172.tar.bz2
bcfg2-6cc7242be3e7c82f1ee473a1b85d06a5a23aa172.zip
Fix subclass ordering
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@5072 ce84e21b-d406-0410-9b95-82705330c041
-rw-r--r--src/lib/Server/Plugins/Decisions.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/Server/Plugins/Decisions.py b/src/lib/Server/Plugins/Decisions.py
index ecbd80f56..101a85fba 100644
--- a/src/lib/Server/Plugins/Decisions.py
+++ b/src/lib/Server/Plugins/Decisions.py
@@ -34,9 +34,9 @@ class DecisionSet(Bcfg2.Server.Plugin.EntrySet):
ret += c.get_decisions()
return ret
-class Decisions(Bcfg2.Server.Plugin.Plugin,
- Bcfg2.Server.Plugin.Decision,
- DecisionSet):
+class Decisions(DecisionSet,
+ Bcfg2.Server.Plugin.Plugin,
+ Bcfg2.Server.Plugin.Decision):
name = 'Decisions'
__version__ = '$Id$'
__author__ = 'bcfg-dev@mcs.anl.gov'