again correct management of null id: avoid returning None by sending empty string.

This commit is contained in:
Michele Comitini
2013-01-20 00:14:02 +01:00
parent 795886d2f2
commit e8189636b3
+1 -1
View File
@@ -4416,7 +4416,7 @@ class Service(object):
if must_respond:
return return_response(id, s)
else:
return
return ''
except Service.JsonRpcException, e:
return return_error(id, e.code, e.info)
except BaseException: