summaryrefslogtreecommitdiffstats
path: root/scripts/qapi/commands.py
diff options
context:
space:
mode:
authorMarkus Armbruster2020-03-04 16:59:32 +0100
committerMarkus Armbruster2020-03-05 09:24:11 +0100
commit8ec0e1a4e68781f1e512af47fd6ab46ec76326e8 (patch)
tree4d41ab70f82f04c28689e62b26ff0d0763b16bb8 /scripts/qapi/commands.py
parentqapi: Use super() now we have Python 3 (diff)
downloadqemu-8ec0e1a4e68781f1e512af47fd6ab46ec76326e8.tar.gz
qemu-8ec0e1a4e68781f1e512af47fd6ab46ec76326e8.tar.xz
qemu-8ec0e1a4e68781f1e512af47fd6ab46ec76326e8.zip
qapi: Brush off some (py)lint
Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20200304155932.20452-5-armbru@redhat.com> Reviewed-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'scripts/qapi/commands.py')
-rw-r--r--scripts/qapi/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/qapi/commands.py b/scripts/qapi/commands.py
index 8bb6316061..0e13e82989 100644
--- a/scripts/qapi/commands.py
+++ b/scripts/qapi/commands.py
@@ -274,7 +274,7 @@ class QAPISchemaGenCommandVisitor(QAPISchemaModularCVisitor):
void %(c_prefix)sqmp_init_marshal(QmpCommandList *cmds);
''',
- c_prefix=c_name(self._prefix, protect=False)))
+ c_prefix=c_name(self._prefix, protect=False)))
self._genc.preamble_add(mcgen('''
#include "qemu/osdep.h"
#include "%(prefix)sqapi-commands.h"