summaryrefslogtreecommitdiffstats
path: root/ipa_server
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-10-27 00:41:37 -0600
committerJason Gerard DeRose <jderose@redhat.com>2008-10-27 00:41:37 -0600
commitc8b3f6516513dc3e5948fe8280c3f159ad122684 (patch)
tree2d5f7fa912cd6ab2fcf7f1cb1a21b90f001f059e /ipa_server
parent03accc5fb382777d9bbdb245f3211d5c06489f6e (diff)
downloadfreeipa-c8b3f6516513dc3e5948fe8280c3f159ad122684.tar.gz
freeipa-c8b3f6516513dc3e5948fe8280c3f159ad122684.tar.xz
freeipa-c8b3f6516513dc3e5948fe8280c3f159ad122684.zip
Removed depreciated load_plugins.py module; changed all places where load_plugins was imported to now call api.load_plugins()
Diffstat (limited to 'ipa_server')
-rw-r--r--ipa_server/mod_python_xmlrpc.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/ipa_server/mod_python_xmlrpc.py b/ipa_server/mod_python_xmlrpc.py
index 814b1f65..450f4a51 100644
--- a/ipa_server/mod_python_xmlrpc.py
+++ b/ipa_server/mod_python_xmlrpc.py
@@ -46,11 +46,12 @@ from ipalib import config
from ipa_server import conn
from ipa_server.servercore import context
from ipa_server.servercore import ipautil
-import ipalib.load_plugins
from ipalib.util import xmlrpc_unmarshal
import string
+api.load_plugins()
+
# Global list of available functions
gfunctions = {}