[Libosinfo] [PATCH libosinfo] examples: avoid PyGIWarning

Daniel P. Berrange berrange at redhat.com
Mon Oct 31 10:44:50 UTC 2016


On Sat, Oct 29, 2016 at 10:42:35PM +0200, Guido Günther wrote:
> This fixes
> 
> demo.py:3: PyGIWarning: Libosinfo was imported without specifying a version first. Use gi.require_version('Libosinfo', '1.0') before import
> to ensure that the right version gets loaded.
>   from gi.repository import Libosinfo as osinfo;
> ---
>  examples/demo.py | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/examples/demo.py b/examples/demo.py
> index bdc9b9a..afd3e7c 100755
> --- a/examples/demo.py
> +++ b/examples/demo.py
> @@ -1,5 +1,7 @@
>  #!/usr/bin/python
>  
> +import gi
> +gi.require_version('Libosinfo', '1.0')
>  from gi.repository import Libosinfo as osinfo;
>  
>  loader = osinfo.Loader()

ACK

Regards,
Daniel
-- 
|: http://berrange.com      -o-    http://www.flickr.com/photos/dberrange/ :|
|: http://libvirt.org              -o-             http://virt-manager.org :|
|: http://entangle-photo.org       -o-    http://search.cpan.org/~danberr/ :|




More information about the Libosinfo mailing list