summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2008-11-03 17:38:05 -0500
committerRob Crittenden <rcritten@redhat.com>2008-11-03 17:38:05 -0500
commitf1314806434b9226f8a7722675b060bdf574c455 (patch)
tree5de794202b5c7cecd25de3848418b1740d825897 /ipalib/plugins
parenta97f5d76d1f9caa9dee30b67dc6b68d436a334c2 (diff)
downloadfreeipa-f1314806434b9226f8a7722675b060bdf574c455.tar.gz
freeipa-f1314806434b9226f8a7722675b060bdf574c455.tar.xz
freeipa-f1314806434b9226f8a7722675b060bdf574c455.zip
Move socket errors from the XML-RPC plugin to the client
Diffstat (limited to 'ipalib/plugins')
-rw-r--r--ipalib/plugins/b_xmlrpc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/plugins/b_xmlrpc.py b/ipalib/plugins/b_xmlrpc.py
index 9c6af0a03..87dc95050 100644
--- a/ipalib/plugins/b_xmlrpc.py
+++ b/ipalib/plugins/b_xmlrpc.py
@@ -61,7 +61,7 @@ class xmlrpc(Backend):
try:
return command(*params)
except socket.error, e:
- print e[1]
+ raise
except xmlrpclib.Fault, e:
err = errors.convertFault(e)
raise err