From beb2b83f361b109ed155e8a7d53e02fa6c874586 Mon Sep 17 00:00:00 2001 From: PhyberApex Date: Sat, 26 Oct 2019 02:12:37 +0200 Subject: [PATCH] Minor text fixes There is no plural of information. --- pwnagotchi/plugins/default/wigle.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pwnagotchi/plugins/default/wigle.py b/pwnagotchi/plugins/default/wigle.py index 1ce072dc..462cdab4 100644 --- a/pwnagotchi/plugins/default/wigle.py +++ b/pwnagotchi/plugins/default/wigle.py @@ -155,7 +155,7 @@ def on_internet_available(agent): continue if gps_data['Latitude'] == 0 and gps_data['Longitude'] == 0: - logging.warning("WIGLE: Not enough gps-informations for %s. Trying again next time.", gps_file) + logging.warning("WIGLE: Not enough gps-information for %s. Trying again next time.", gps_file) SKIP.append(gps_file) continue @@ -167,7 +167,7 @@ def on_internet_available(agent): WifiInfo.CHANNEL, WifiInfo.RSSI]) except FieldNotFoundError: - logging.error("WIGLE: Could not extract all informations. Skip %s", gps_file) + logging.error("WIGLE: Could not extract all information. Skip %s", gps_file) SKIP.append(gps_file) continue except Scapy_Exception as sc_e: