python: generator: Don't print warning if nothing to warn about

This commit is contained in:
Cole Robinson 2011-06-15 17:57:37 -04:00
parent e8c8fc144d
commit eb3151b411

View File

@ -655,9 +655,11 @@ def buildStubs():
print "Generated %d wrapper functions" % nb_wrap
print "Missing type converters: "
for type in unknown_types.keys():
print "%s:%d " % (type, len(unknown_types[type])),
if unknown_types:
print "Missing type converters: "
for type in unknown_types.keys():
print "%s:%d " % (type, len(unknown_types[type])),
print
for f in functions_failed: