summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugin/interfaces.py
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2013-02-12 09:47:04 -0500
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2013-02-12 09:47:04 -0500
commit088ca5fee4cc99f9143f18a880cdec6712326e1e (patch)
treed46f85076715e69d960beca4726e4ab70a648c3e /src/lib/Bcfg2/Server/Plugin/interfaces.py
parentb455ba94256a4b6afccc7d469ed55c0bda6dc13c (diff)
downloadbcfg2-088ca5fee4cc99f9143f18a880cdec6712326e1e.tar.gz
bcfg2-088ca5fee4cc99f9143f18a880cdec6712326e1e.tar.bz2
bcfg2-088ca5fee4cc99f9143f18a880cdec6712326e1e.zip
fixed unit tests
Diffstat (limited to 'src/lib/Bcfg2/Server/Plugin/interfaces.py')
-rw-r--r--src/lib/Bcfg2/Server/Plugin/interfaces.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/Bcfg2/Server/Plugin/interfaces.py b/src/lib/Bcfg2/Server/Plugin/interfaces.py
index c1dbb1578..3ef29775d 100644
--- a/src/lib/Bcfg2/Server/Plugin/interfaces.py
+++ b/src/lib/Bcfg2/Server/Plugin/interfaces.py
@@ -531,7 +531,7 @@ class Version(Plugin):
#: be ".svn"
__vcs_metadata_path__ = None
- __rmi__ = Bcfg2.Server.Plugin.Version.__rmi__ + ['get_revision']
+ __rmi__ = Plugin.__rmi__ + ['get_revision']
def __init__(self, core, datastore):
Plugin.__init__(self, core, datastore)
@@ -602,7 +602,7 @@ class ClientACLs(object):
""" ClientACLs are used to grant or deny access to different
XML-RPC calls based on client IP or metadata. """
- def check_acl_ip(self, address, rmi):
+ def check_acl_ip(self, address, rmi): # pylint: disable=W0613
""" Check if the given IP address is authorized to make the
named XML-RPC call.
@@ -615,7 +615,7 @@ class ClientACLs(object):
"""
return True
- def check_acl_metadata(self, metadata, rmi):
+ def check_acl_metadata(self, metadata, rmi): # pylint: disable=W0613
""" Check if the given client is authorized to make the named
XML-RPC call.