newline after jsonrpc response
This commit is contained in:
parent
25dcf592a0
commit
c4b65fddac
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ def generate_key(x=None):
|
||||||
|
|
||||||
|
|
||||||
def jsonrpc_dumps_pretty(obj, **kwargs):
|
def jsonrpc_dumps_pretty(obj, **kwargs):
|
||||||
return jsonrpclib.dumps(obj, sort_keys=True, indent=2, separators=(',', ': '), **kwargs)
|
return jsonrpclib.dumps(obj, sort_keys=True, indent=2, separators=(',', ': '), **kwargs) + "\n"
|
||||||
|
|
||||||
|
|
||||||
class APIKey(object):
|
class APIKey(object):
|
||||||
|
|
Loading…
Reference in a new issue