Re: [PATCH] block/export: fix QAPI doc indentation style violation

2020-10-01 Thread Peter Maydell
On Thu, 1 Oct 2020 at 14:18, Stefan Hajnoczi wrote: > > Since commit a69a6d4b4d4fae2e3d2506241e22a78ff1732283 > ("scripts/qapi/parser.py: improve doc comment indent handling") the QAPI > generator emits an error when unindented text follows "Returns:". > -# @addr: Address on which to listen. > -#

Re: [PATCH] block/export: fix QAPI doc indentation style violation

2020-10-01 Thread Philippe Mathieu-Daudé
On 10/1/20 3:14 PM, Stefan Hajnoczi wrote: > Since commit a69a6d4b4d4fae2e3d2506241e22a78ff1732283 > ("scripts/qapi/parser.py: improve doc comment indent handling") the QAPI > generator emits an error when unindented text follows "Returns:". > > Fix block-export.json by moving the comment to make

Re: [PATCH] block/export: fix QAPI doc indentation style violation

2020-10-01 Thread Kevin Wolf
Am 01.10.2020 um 15:14 hat Stefan Hajnoczi geschrieben: > Since commit a69a6d4b4d4fae2e3d2506241e22a78ff1732283 > ("scripts/qapi/parser.py: improve doc comment indent handling") the QAPI > generator emits an error when unindented text follows "Returns:". > > Fix block-export.json by moving the com

[PATCH] block/export: fix QAPI doc indentation style violation

2020-10-01 Thread Stefan Hajnoczi
Since commit a69a6d4b4d4fae2e3d2506241e22a78ff1732283 ("scripts/qapi/parser.py: improve doc comment indent handling") the QAPI generator emits an error when unindented text follows "Returns:". Fix block-export.json by moving the comment to make the QAPI generator happy. Signed-off-by: Stefan Hajn