From b1a0c8c12f0b6f90ce67ea8d64503db59dcef84e Mon Sep 17 00:00:00 2001 From: Matthew Stidham Date: Fri, 17 Dec 2021 13:34:05 -0800 Subject: [PATCH] realm: station_profile needs ipv6 to be passed into the initial call of new_station_profile Signed-off-by: Matthew Stidham --- py-json/realm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/py-json/realm.py b/py-json/realm.py index cc697e89..30c9bfc1 100755 --- a/py-json/realm.py +++ b/py-json/realm.py @@ -826,8 +826,8 @@ class Realm(LFCliBase): link = self.lfclient_url + link info = () - def new_station_profile(self): - return StationProfile(self.lfclient_url, local_realm=self, debug_=self.debug, up=False) + def new_station_profile(self, ipv6=False): + return StationProfile(self.lfclient_url, local_realm=self, debug_=self.debug, ipv6=ipv6, up=False) def new_multicast_profile(self): return MULTICASTProfile(self.lfclient_host, self.lfclient_port, local_realm=self, debug_=self.debug, report_timer_=3000)