summaryrefslogtreecommitdiffstats
path: root/hcid/simple-agent
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2008-06-04 08:07:24 +0000
committerMarcel Holtmann <marcel@holtmann.org>2008-06-04 08:07:24 +0000
commit12f87334e7f68864c3dbe2c753a5422249b30730 (patch)
treeee623619bd942283ce0d2921e3b1bc3af0c1a401 /hcid/simple-agent
parentd97274c4704598d691b639c39334c25d342792b8 (diff)
Add missing :
Diffstat (limited to 'hcid/simple-agent')
-rwxr-xr-xhcid/simple-agent6
1 files changed, 3 insertions, 3 deletions
diff --git a/hcid/simple-agent b/hcid/simple-agent
index 18d3eacf..f770e22a 100755
--- a/hcid/simple-agent
+++ b/hcid/simple-agent
@@ -27,19 +27,19 @@ class Agent(dbus.service.Object):
@dbus.service.method("org.bluez.Agent",
in_signature="o", out_signature="u")
- def RequestPasskey(self, device)
+ def RequestPasskey(self, device):
print "RequestPasskey (" + device + ")"
return dbus.UInt32(123456)
@dbus.service.method("org.bluez.Agent",
in_signature="ou", out_signature="")
- def DisplayPasskey(self, device, passkey)
+ def DisplayPasskey(self, device, passkey):
print "DisplayPasskey (" + device + ", " + passkey + ")"
return
@dbus.service.method("org.bluez.Agent",
in_signature="ou", out_signature="")
- def RequestConfirmation(self, device, passkey)
+ def RequestConfirmation(self, device, passkey):
print "RequestConfirmation (" + device + ", " + passkey + ")"
return