[Spice-devel] [spice-common PATCH] python_modules/ptypes.py/EnumBaseType.c_enumname: add missing return to fix broken enums generation

Marc-André Lureau mlureau at redhat.com
Thu Jun 14 02:11:02 PDT 2012


I don't see exactly what it will fixed, perhaps you should include a small example. But that looks like a typo and can't harm, ACK

----- Mensaje original -----
> ---
>  python_modules/ptypes.py |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/python_modules/ptypes.py b/python_modules/ptypes.py
> index 132ba99..d9fbfe2 100644
> --- a/python_modules/ptypes.py
> +++ b/python_modules/ptypes.py
> @@ -234,7 +234,7 @@ class EnumBaseType(Type):
>          return codegen.prefix_camel(self.name)
>  
>      def c_enumname(self, value):
> -        self.c_enumname_by_name(self.names[value])
> +        return self.c_enumname_by_name(self.names[value])
>  
>      def c_enumname_by_name(self, name):
>          if self.has_attr("prefix"):
> --
> 1.7.10.1
> 
> _______________________________________________
> Spice-devel mailing list
> Spice-devel at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/spice-devel
> 


More information about the Spice-devel mailing list