From 063c15e6a9e882a5b4e9004f689a90db30bbcee9 Mon Sep 17 00:00:00 2001 From: Jed Reynolds Date: Thu, 6 Aug 2020 22:43:55 -0700 Subject: [PATCH] realm.py: adds gaurd to test if we're getting a no items --- py-json/realm.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/py-json/realm.py b/py-json/realm.py index 65f62d85..1124d4f4 100755 --- a/py-json/realm.py +++ b/py-json/realm.py @@ -547,7 +547,9 @@ class Realm(LFCliBase): def remove_all_endps(self): endp_list = self.json_get("/endp/list") - if endp_list is not None: + if "items" in endp_list: + return + if endp_list is not None or endp_list : print("Removing all endps") endp_list = list(endp_list['endpoint']) for endp_name in range(len(endp_list)): @@ -1341,7 +1343,7 @@ class WifiMonitor: self.aid = "NA" # used when sniffing /ax radios self.bsssid = "00:00:00:00:00:00" # used when sniffing on /ax radios - def create(self, resource_=1,channel=None, radio_="wiphy0", name_="moni0" ): + def create(self, resource_=1, channel=None, radio_="wiphy0", name_="moni0" ): print("Creating monitor " + name_) self.monitor_name = name_ computed_flags = 0