From a1c739701eee4cdb7fc223a328a715caaec4faa8 Mon Sep 17 00:00:00 2001 From: Matthew Stidham Date: Wed, 8 Sep 2021 17:39:51 -0700 Subject: [PATCH] import realm properly in station_layer3.py Signed-off-by: Matthew Stidham --- py-scripts/station_layer3.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/py-scripts/station_layer3.py b/py-scripts/station_layer3.py index 0f749ae9..63292445 100644 --- a/py-scripts/station_layer3.py +++ b/py-scripts/station_layer3.py @@ -9,10 +9,8 @@ import time if 'py-json' not in sys.path: sys.path.append('../py-json') from LANforge import LFUtils -from LANforge import lfcli_base from LANforge.lfcli_base import LFCliBase from LANforge.LFUtils import * -import realm from realm import Realm class STATION(LFCliBase): @@ -28,7 +26,7 @@ class STATION(LFCliBase): self.name_prefix = name_prefix self.upstream = upstream - self.local_realm = realm.Realm(lfclient_host=self.host, lfclient_port=self.port) + self.local_realm = Realm(lfclient_host=self.host, lfclient_port=self.port) self.station_profile = self.local_realm.new_station_profile() self.station_profile.ssid = self.ssid self.station_profile.ssid_pass = self.paswd,