From: Tomek Mrugalski Date: Mon, 19 Aug 2019 15:00:57 +0000 (+0200) Subject: Fixed error in api2doc.py X-Git-Tag: Kea-1.6.0~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dee54b0233bec8007740ee1bc65ae0b68b3c64bd;p=thirdparty%2Fkea.git Fixed error in api2doc.py - the default response had unnecessary quotes --- 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'