From: John Snow <[email protected]> _is_user_module() returns thruth values. The next commit wants it to return bool. Make it so.
Signed-off-by: John Snow <[email protected]> Reviewed-by: Cleber Rosa <[email protected]> Reviewed-by: Eduardo Habkost <[email protected]> Reviewed-by: Philippe Mathieu-Daudé <[email protected]> Message-Id: <[email protected]> Reviewed-by: Markus Armbruster <[email protected]> [Commit message rewritten] Signed-off-by: Markus Armbruster <[email protected]> --- scripts/qapi/gen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/qapi/gen.py b/scripts/qapi/gen.py index fff0c0acb6..2c305c4f82 100644 --- a/scripts/qapi/gen.py +++ b/scripts/qapi/gen.py @@ -241,7 +241,7 @@ class QAPISchemaModularCVisitor(QAPISchemaVisitor): @staticmethod def _is_user_module(name): - return name and not name.startswith('./') + return bool(name and not name.startswith('./')) @staticmethod def _is_builtin_module(name): -- 2.26.2
