From 40918029e74964dc4c86e75c783ebf1f21aa1e27 Mon Sep 17 00:00:00 2001 From: Jeroen Oudshoorn Date: Tue, 11 Feb 2025 10:28:20 +0100 Subject: [PATCH] Small changes Signed-off-by: Jeroen Oudshoorn --- pwnagotchi/plugins/default/bt-tether.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pwnagotchi/plugins/default/bt-tether.py b/pwnagotchi/plugins/default/bt-tether.py index 1f253f13..7d797c1f 100644 --- a/pwnagotchi/plugins/default/bt-tether.py +++ b/pwnagotchi/plugins/default/bt-tether.py @@ -161,7 +161,7 @@ class BTTether(plugins.Plugin): logging.error("[BT-Tether] Phone name not provided") return if not ("mac" in self.options and re.match(MAC_PTTRN, self.options["mac"])): - logging.error("[BT-Tether] Error with mac adresse") + logging.error("[BT-Tether] Error with mac address") return if not ("phone" in self.options and self.options["phone"].lower() in ["android", "ios"]): @@ -274,7 +274,7 @@ class BTTether(plugins.Plugin): bluetooth = "Error while checking bluetoothctl" try: - device =self.nmcli(["-w", "0","device", "show", self.mac]) + device = self.nmcli(["-w", "0","device", "show", self.mac]) device = device.stdout.replace('\n', '
') except Exception as e: device = "Error while checking nmcli device"