Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tutorius
diff options
context:
space:
mode:
Diffstat (limited to 'tutorius')
-rw-r--r--tutorius/service.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tutorius/service.py b/tutorius/service.py
index 70efc80..4be1f41 100644
--- a/tutorius/service.py
+++ b/tutorius/service.py
@@ -120,7 +120,7 @@ class ServiceProxy:
@param unique_id The unique identification associated to this
process
"""
- self._service.register_probe(process_name,unique_id)
+ remote_call(self._service.register_probe, (process_name,unique_id), block=False)
def unregister_probe(self, unique_id):
""" Remove a probe from the known probes.
@@ -129,7 +129,7 @@ class ServiceProxy:
@param unique_id The unique identification associated to this
process
"""
- self._service.unregister_probe(unique_id)
+ remote_call(self._service.unregister_probe, (unique_id), block=False)
if __name__ == "__main__":
import dbus.mainloop.glib