[Libosinfo] [PATCH libosinfo] examples: avoid PyGIWarning

Guido Günther agx at sigxcpu.org
Thu Nov 3 13:39:42 UTC 2016


On Mon, Oct 31, 2016 at 10:44:50AM +0000, Daniel P. Berrange wrote:
> 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

Pushed. Thanks.
 -- Guido




More information about the Libosinfo mailing list