mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-22 19:32:19 +00:00
python: generator: Don't print warning if nothing to warn about
This commit is contained in:
parent
e8c8fc144d
commit
eb3151b411
@ -655,9 +655,11 @@ def buildStubs():
|
|||||||
|
|
||||||
print "Generated %d wrapper functions" % nb_wrap
|
print "Generated %d wrapper functions" % nb_wrap
|
||||||
|
|
||||||
print "Missing type converters: "
|
if unknown_types:
|
||||||
for type in unknown_types.keys():
|
print "Missing type converters: "
|
||||||
print "%s:%d " % (type, len(unknown_types[type])),
|
for type in unknown_types.keys():
|
||||||
|
print "%s:%d " % (type, len(unknown_types[type])),
|
||||||
|
|
||||||
print
|
print
|
||||||
|
|
||||||
for f in functions_failed:
|
for f in functions_failed:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user