summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugin.py
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2012-08-20 13:40:29 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2012-08-20 13:40:29 -0400
commit854aaf4986cd79b659fe4de0b1d319dbd5f9ac92 (patch)
tree0c83c562c23e4562e0b1a146e2b2753713495c76 /src/lib/Bcfg2/Server/Plugin.py
parent7cfa4498a417f6b52a0c159dbd680496b47e279e (diff)
downloadbcfg2-854aaf4986cd79b659fe4de0b1d319dbd5f9ac92.tar.gz
bcfg2-854aaf4986cd79b659fe4de0b1d319dbd5f9ac92.tar.bz2
bcfg2-854aaf4986cd79b659fe4de0b1d319dbd5f9ac92.zip
added CmpMixin to provide __cmp__ functionality to py3k
Diffstat (limited to 'src/lib/Bcfg2/Server/Plugin.py')
-rw-r--r--src/lib/Bcfg2/Server/Plugin.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/Bcfg2/Server/Plugin.py b/src/lib/Bcfg2/Server/Plugin.py
index c6e626a5c..82162aa4a 100644
--- a/src/lib/Bcfg2/Server/Plugin.py
+++ b/src/lib/Bcfg2/Server/Plugin.py
@@ -10,7 +10,7 @@ import threading
import lxml.etree
import Bcfg2.Server
import Bcfg2.Options
-from Bcfg2.Bcfg2Py3k import ConfigParser
+from Bcfg2.Bcfg2Py3k import ConfigParser, CmpMixin
try:
import django
@@ -992,9 +992,10 @@ class SpecificityError(Exception):
pass
-class Specificity(object):
+class Specificity(CmpMixin):
def __init__(self, all=False, group=False, hostname=False, prio=0,
delta=False):
+ CmpMixin.__init__(self)
self.hostname = hostname
self.all = all
self.group = group