summaryrefslogtreecommitdiffstats
path: root/python/service.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/service.py')
-rw-r--r--python/service.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/python/service.py b/python/service.py
index e5a7002b..ad36e4f5 100644
--- a/python/service.py
+++ b/python/service.py
@@ -27,8 +27,9 @@ class BusName(object):
if retval == dbus_bindings.REQUEST_NAME_REPLY_PRIMARY_OWNER:
pass
elif retval == dbus_bindings.REQUEST_NAME_REPLY_IN_QUEUE:
- # you can't arrive at this state via the high-level bindings
- # because you can't put flags in, but... who knows?
+ # queueing can happen by default, maybe we should
+ # track this better or let the user know if they're
+ # queued or not?
pass
elif retval == dbus_bindings.REQUEST_NAME_REPLY_EXISTS:
raise NameExistsException(name)