Mercurial > libervia-backend
changeset 171:96af1bec2e68
Dbus bridge (frontend): added profile_key argument for gatewayRegister
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 12 Aug 2010 13:17:10 +0800 |
parents | 2ea8dab08160 |
children | 726786e914c3 |
files | frontends/sat_bridge_frontend/DBus.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/frontends/sat_bridge_frontend/DBus.py Thu Aug 12 12:31:45 2010 +0800 +++ b/frontends/sat_bridge_frontend/DBus.py Thu Aug 12 13:17:10 2010 +0800 @@ -175,9 +175,9 @@ def in_band_register(self, target, profile_key='@DEFAULT@'): return self.db_comm_iface.in_band_register(target, profile_key) - def gatewayRegister(self, action, target, data): + def gatewayRegister(self, action, target, data, profile_key='@DEFAULT@'): if data == None: data = [('', '')] #XXX: we have to do this awful hack because python dbus need to guess the signature - return self.db_req_iface.gatewayRegister(action, target, data) + return self.db_req_iface.gatewayRegister(action, target, data, profile_key)