possible fix on disable_dbus
This commit is contained in:
parent
e814975d6f
commit
740a987004
|
@ -829,7 +829,7 @@ class Interface:
|
|||
self.remote = remote_control.Remote(self)
|
||||
|
||||
def disable_dbus(self):
|
||||
if self.remote: # FIXME: A handler is already registered for the path starting with path[0] = "org"
|
||||
if hasattr(self, 'remote') and self.remote: # FIXME: A handler is already registered for the path starting with path[0] = "org"
|
||||
del (self.remote)
|
||||
self.remote = None
|
||||
|
||||
|
|
Loading…
Reference in New Issue