From cac642dc6b78a2d5191f3b618c066652fadd5860 Mon Sep 17 00:00:00 2001 From: Deepraj Pandey <15888623+DeeprajPandey@users.noreply.github.com> Date: Fri, 28 Feb 2020 20:21:09 +0530 Subject: [PATCH] Escape newlines: fix sphinx warnings Fix for the unexpected unindent error Sphinx raises when generating docs. --- bitcoin/rpc.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bitcoin/rpc.py b/bitcoin/rpc.py index 51f24ac9..2b55054f 100644 --- a/bitcoin/rpc.py +++ b/bitcoin/rpc.py @@ -374,9 +374,9 @@ def fundrawtransaction(self, tx, include_watching=False): Returns dict: - {'tx': Resulting tx, - 'fee': Fee the resulting transaction pays, - 'changepos': Position of added change output, or -1, + {'tx': Resulting tx,\ + 'fee': Fee the resulting transaction pays,\ + 'changepos': Position of added change output, or -1,\ } """ hextx = hexlify(tx.serialize())