Re: [Om2009] D-bus errors

2009-06-18 Thread David Fokkema
On Thu, 2009-06-18 at 18:18 +0200, Michael 'Mickey' Lauer wrote: > On Thursday 18 June 2009 16:41:54 Sebastian Krzyszkowiak wrote: > > > Traceback (most recent call last): > > > File "./myapp.py", line 9, in > > >print gps_device.GetConnectionStatus() > > > File "/usr/lib/python2.6/site-pack

Re: [Om2009] D-bus errors

2009-06-18 Thread Michael 'Mickey' Lauer
On Thursday 18 June 2009 16:41:54 Sebastian Krzyszkowiak wrote: > > Traceback (most recent call last): > > File "./myapp.py", line 9, in > >print gps_device.GetConnectionStatus() > > File "/usr/lib/python2.6/site-packages/dbus/proxies.py", line 68, in > > __call__ > >return self._proxy_m

Re: [Om2009] D-bus errors

2009-06-18 Thread Sebastian Krzyszkowiak
On Thu, Jun 18, 2009 at 15:24, David Fokkema wrote: > Hi list, > > The following python script: > > import dbus > bus = dbus.SystemBus() > gps = bus.get_object('org.freedesktop.Gypsy', '/org/freedesktop/Gypsy') > gps_device = dbus.Interface(gps, 'org.freedesktop.Gypsy.Device') > print gps_device.Ge

[Om2009] D-bus errors

2009-06-18 Thread David Fokkema
Hi list, The following python script: import dbus bus = dbus.SystemBus() gps = bus.get_object('org.freedesktop.Gypsy', '/org/freedesktop/Gypsy') gps_device = dbus.Interface(gps, 'org.freedesktop.Gypsy.Device') print gps_device.GetConnectionStatus() gives: Traceback (most recent call last): Fi