Skip to content
This repository has been archived by the owner on Apr 26, 2020. It is now read-only.

Commit

Permalink
DomainManager fix bug in emitting state signals
Browse files Browse the repository at this point in the history
  • Loading branch information
kalkin committed Jun 20, 2017
1 parent 7ffe3a6 commit 9d3e416
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion qubesdbus/domain_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,8 @@ def emit_state_signal(dbus_interface,
signal_match = self.bus.add_signal_receiver(
emit_state_signal,
signal_name="PropertiesChanged",
dbus_interface='org.freedesktop.DBus.Properties') # type: DBusSignalMatch
dbus_interface='org.freedesktop.DBus.Properties',
path=obj_path) # type: DBusSignalMatch

if obj_path not in self.signal_matches:
self.signal_matches[obj_path] = list()
Expand Down

0 comments on commit 9d3e416

Please sign in to comment.