[libvirt] [PATCH 02/10] python: generator: Don't print warning if nothing to warn about

Daniel Veillard veillard at redhat.com
Thu Jun 16 13:44:02 UTC 2011


On Wed, Jun 15, 2011 at 09:23:11PM -0400, Cole Robinson wrote:
> 
> Signed-off-by: Cole Robinson <crobinso at redhat.com>
> ---
>  python/generator.py |    8 +++++---
>  1 files changed, 5 insertions(+), 3 deletions(-)
> 
> diff --git a/python/generator.py b/python/generator.py
> index 39c3ca7..6ee0ada 100755
> --- a/python/generator.py
> +++ b/python/generator.py
> @@ -654,9 +654,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

  ACK, man, that's old code :-)

Daniel

-- 
Daniel Veillard      | libxml Gnome XML XSLT toolkit  http://xmlsoft.org/
daniel at veillard.com  | Rpmfind RPM search engine http://rpmfind.net/
http://veillard.com/ | virtualization library  http://libvirt.org/




More information about the libvir-list mailing list