diff options
| author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2007-06-12 14:27:39 +0100 |
|---|---|---|
| committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2007-06-12 14:27:39 +0100 |
| commit | dbfb6d7b676d22dc98c3ef88071a9deeffa79648 (patch) | |
| tree | 0d7dde6fdda0acb06ad4c37f198a3a5d82f57142 /dbus | |
| parent | 5b408fd8501d79f87bd752f9ce483f5beb6f157b (diff) | |
| download | dbus-python-dbfb6d7b676d22dc98c3ef88071a9deeffa79648.tar.gz | |
dbus.bus: In watch_name_owner, only watch the desired name!
Diffstat (limited to 'dbus')
| -rw-r--r-- | dbus/bus.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dbus/bus.py b/dbus/bus.py index d7352be..da56a32 100644 --- a/dbus/bus.py +++ b/dbus/bus.py @@ -68,7 +68,8 @@ class NameOwnerWatch(object): 'NameOwnerChanged', BUS_DAEMON_IFACE, BUS_DAEMON_NAME, - BUS_DAEMON_PATH) + BUS_DAEMON_PATH, + arg0=bus_name) self._pending_call = bus_conn.call_async(BUS_DAEMON_NAME, BUS_DAEMON_PATH, BUS_DAEMON_IFACE, |
