spelling: successfully

This commit is contained in:
Josh Soref 2019-10-26 22:12:45 -04:00
parent 9888e1fb39
commit 0b495ebd13
4 changed files with 4 additions and 4 deletions

View File

@ -30,7 +30,7 @@ def on_loaded():
return return
READY = True READY = True
logging.info("AUTO-BACKUP: Successfuly loaded.") logging.info("AUTO-BACKUP: Successfully loaded.")
def on_internet_available(agent): def on_internet_available(agent):

View File

@ -74,7 +74,7 @@ def on_internet_available(agent):
_upload_to_ohc(handshake) _upload_to_ohc(handshake)
reported.append(handshake) reported.append(handshake)
REPORT.update(data={'reported': reported}) REPORT.update(data={'reported': reported})
logging.info(f"OHC: Successfuly uploaded {handshake}") logging.info(f"OHC: Successfully uploaded {handshake}")
except requests.exceptions.RequestException as req_e: except requests.exceptions.RequestException as req_e:
SKIP.append(handshake) SKIP.append(handshake)
logging.error("OHC: %s", req_e) logging.error("OHC: %s", req_e)

View File

@ -186,7 +186,7 @@ def on_internet_available(agent):
_send_to_wigle(csv_entries, OPTIONS['api_key']) _send_to_wigle(csv_entries, OPTIONS['api_key'])
reported += no_err_entries reported += no_err_entries
REPORT.update(data={'reported': reported}) REPORT.update(data={'reported': reported})
logging.info("WIGLE: Successfuly uploaded %d files", len(no_err_entries)) logging.info("WIGLE: Successfully uploaded %d files", len(no_err_entries))
except requests.exceptions.RequestException as re_e: except requests.exceptions.RequestException as re_e:
SKIP += no_err_entries SKIP += no_err_entries
logging.error("WIGLE: Got an exception while uploading %s", re_e) logging.error("WIGLE: Got an exception while uploading %s", re_e)

View File

@ -77,7 +77,7 @@ def on_internet_available(agent):
_upload_to_wpasec(handshake) _upload_to_wpasec(handshake)
reported.append(handshake) reported.append(handshake)
REPORT.update(data={'reported': reported}) REPORT.update(data={'reported': reported})
logging.info("WPA_SEC: Successfuly uploaded %s", handshake) logging.info("WPA_SEC: Successfully uploaded %s", handshake)
except requests.exceptions.RequestException as req_e: except requests.exceptions.RequestException as req_e:
SKIP.append(handshake) SKIP.append(handshake)
logging.error("WPA_SEC: %s", req_e) logging.error("WPA_SEC: %s", req_e)