From 70ad14506c03690454d4d65e12b8f8e181eb0b3a Mon Sep 17 00:00:00 2001 From: Jeroen Oudshoorn Date: Thu, 7 Sep 2023 14:11:48 +0200 Subject: [PATCH] Version 2.3.2 Signed-off-by: Jeroen Oudshoorn Signed-off-by: Jeroen Oudshoorn --- pwnagotchi/plugins/default/fix_services.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pwnagotchi/plugins/default/fix_services.py b/pwnagotchi/plugins/default/fix_services.py index c4c6162f..19407e6f 100644 --- a/pwnagotchi/plugins/default/fix_services.py +++ b/pwnagotchi/plugins/default/fix_services.py @@ -170,7 +170,6 @@ class Fix_Services(plugins.Plugin): try: # Run the monstart command to restart wlan0mon cmd_output = subprocess.check_output("monstart", shell=True) - self._status = "up" logging.info("[Fix_Services monstart]: %s" % repr(cmd_output)) except Exception as err: logging.error("[Fix_Services monstart]: %s" % repr(err)) @@ -185,7 +184,6 @@ class Fix_Services(plugins.Plugin): try: # Run the monstart command to restart wlan0mon cmd_output = subprocess.check_output("monstart", shell=True) - self._status = "up" logging.info("[Fix_Services monstart]: %s" % repr(cmd_output)) except Exception as err: logging.error("[Fix_Services monstart]: %s" % repr(err))