# HG changeset patch # User Goffi # Date 1281590230 -28800 # Node ID 96af1bec2e689d613cb238fd4781ee6bae3098fa # Parent 2ea8dab08160bf03eca9c5f67d8c23323fe00d6a Dbus bridge (frontend): added profile_key argument for gatewayRegister diff -r 2ea8dab08160 -r 96af1bec2e68 frontends/sat_bridge_frontend/DBus.py --- 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)