diff options
author | adityacp | 2016-12-23 15:03:37 +0530 |
---|---|---|
committer | adityacp | 2016-12-23 15:03:37 +0530 |
commit | d442941819dc7f8b65a2965fbcefe000fea1cde2 (patch) | |
tree | 624d8ba12cf83cf57f685bc8cee158be14aee783 /yaksh/xmlrpc_clients.py | |
parent | 14b628f49a7d0aa58c22c021c62a5d0a748ae881 (diff) | |
parent | 48366e84b98157ac32b22b2aa19b1c1cde68afd4 (diff) | |
download | online_test-d442941819dc7f8b65a2965fbcefe000fea1cde2.tar.gz online_test-d442941819dc7f8b65a2965fbcefe000fea1cde2.tar.bz2 online_test-d442941819dc7f8b65a2965fbcefe000fea1cde2.zip |
Fix conflict
Diffstat (limited to 'yaksh/xmlrpc_clients.py')
-rw-r--r-- | yaksh/xmlrpc_clients.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/yaksh/xmlrpc_clients.py b/yaksh/xmlrpc_clients.py index bb8260d..fbcd6a5 100644 --- a/yaksh/xmlrpc_clients.py +++ b/yaksh/xmlrpc_clients.py @@ -69,7 +69,8 @@ class CodeServerProxy(object): except ConnectionError: result = json.dumps({'success': False, 'weight': 0.0, - 'error': 'Unable to connect to any code servers!'}) + 'error': ['Unable to connect to any code servers!'] + }) return result def _get_server(self): |