From c4b65fddac036aab344c3f466e0700dc8ca72afd Mon Sep 17 00:00:00 2001 From: Alex Grintsvayg Date: Tue, 14 Mar 2017 11:11:27 -0400 Subject: [PATCH] newline after jsonrpc response --- lbrynet/lbrynet_daemon/auth/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbrynet/lbrynet_daemon/auth/util.py b/lbrynet/lbrynet_daemon/auth/util.py index bbfbd7be1..b68e760cd 100644 --- a/lbrynet/lbrynet_daemon/auth/util.py +++ b/lbrynet/lbrynet_daemon/auth/util.py @@ -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):