From dee54b0233bec8007740ee1bc65ae0b68b3c64bd Mon Sep 17 00:00:00 2001 From: Tomek Mrugalski Date: Mon, 19 Aug 2019 17:00:57 +0200 Subject: [PATCH] Fixed error in api2doc.py - the default response had unnecessary quotes --- doc/sphinx/api2doc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/sphinx/api2doc.py b/doc/sphinx/api2doc.py index 8f49edffd5..25cdf0aa7d 100755 --- a/doc/sphinx/api2doc.py +++ b/doc/sphinx/api2doc.py @@ -151,7 +151,7 @@ API Reference else: rst += ' {\n' - rst += ' "result": "",\n' + rst += ' "result": ,\n' rst += ' "text": ""\n' rst += ' }' rst += '\n\n' -- 2.47.2