diff options
author | Rob Crittenden <rcritten@redhat.com> | 2008-10-22 17:54:04 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2008-10-22 17:54:04 -0400 |
commit | 1daf319a19f902d7c7bef37af065cac81be9189e (patch) | |
tree | 5d840adb9273b7fa0569477fdf2be68d351d0d69 /ipalib/plugins/b_xmlrpc.py | |
parent | f189b02996668e5d600f1abed675cb20cd72290f (diff) | |
download | freeipa.git-1daf319a19f902d7c7bef37af065cac81be9189e.tar.gz freeipa.git-1daf319a19f902d7c7bef37af065cac81be9189e.tar.xz freeipa.git-1daf319a19f902d7c7bef37af065cac81be9189e.zip |
Implement the host commands
In order for this to work against a v1 database the update host.update needs to
be applied
Diffstat (limited to 'ipalib/plugins/b_xmlrpc.py')
-rw-r--r-- | ipalib/plugins/b_xmlrpc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/plugins/b_xmlrpc.py b/ipalib/plugins/b_xmlrpc.py index 9fe5b133..572a7511 100644 --- a/ipalib/plugins/b_xmlrpc.py +++ b/ipalib/plugins/b_xmlrpc.py @@ -69,7 +69,7 @@ class xmlrpc(Backend): print "%s: %s" % (code, faultString) else: print "%s: %s" % (code, getattr(err,'__doc__','')) - return {} + return api.register(xmlrpc) |