diff options
Diffstat (limited to 'skype')
| -rw-r--r-- | skype/skyped.py | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/skype/skyped.py b/skype/skyped.py index 6cf542e0..1a2d3c25 100644 --- a/skype/skyped.py +++ b/skype/skyped.py @@ -111,7 +111,10 @@ class SkypeApi(dbus.service.Object):  		except dbus.exceptions.DBusException, s:  			reply = str(s)  			if(reply.startswith("org.freedesktop.DBus.Error.ServiceUnknown")): -				self.remove_from_connection(dbus.SessionBus(), "/com/Skype/Client") +				try: +					self.remove_from_connection(dbus.SessionBus(), "/com/Skype/Client") +				except LookupError: +					pass  				mainloop.quit()  		dprint('<< ' + reply)  		return reply | 
