From 75b0bf3ddb293747d5a1b3dce445536a862c0c07 Mon Sep 17 00:00:00 2001 From: Arman Uguray Date: Thu, 23 Apr 2015 17:13:08 -0700 Subject: [PATCH] test/example-advertisement: Use IncludeTxPower This patch changes the example-advertisement script to use IncludeTxPower rather than IncludeTXPower. --- test/example-advertisement | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/example-advertisement b/test/example-advertisement index 1198f2e78..151ddfecc 100755 --- a/test/example-advertisement +++ b/test/example-advertisement @@ -70,7 +70,7 @@ class Advertisement(dbus.service.Object): properties['ServiceData'] = dbus.Dictionary(self.service_data, signature='say') if self.include_tx_power is not None: - properties['IncludeTXPower'] = dbus.Boolean(self.include_tx_power) + properties['IncludeTxPower'] = dbus.Boolean(self.include_tx_power) return {LE_ADVERTISEMENT_IFACE: properties} def get_path(self): -- 2.47.3