newline after jsonrpc response

This commit is contained in:
Alex Grintsvayg 2017-03-14 11:11:27 -04:00
parent 25dcf592a0
commit c4b65fddac

View file

@ -25,7 +25,7 @@ def generate_key(x=None):
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):