From 6fe41dfd5fed22b3e78be38788f6f15472e8dded Mon Sep 17 00:00:00 2001 From: Chuck SmileyRekiere Date: Mon, 27 Sep 2021 15:37:18 -0600 Subject: [PATCH] stations_connected.py : utility script , fixed the command passing Need to update , there is not help Signed-off-by: Chuck SmileyRekiere --- py-scripts/stations_connected.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/py-scripts/stations_connected.py b/py-scripts/stations_connected.py index 74070fbc..cbe37f49 100755 --- a/py-scripts/stations_connected.py +++ b/py-scripts/stations_connected.py @@ -19,8 +19,8 @@ Realm = realm.Realm class StationsConnected(LFCliBase): def __init__(self, lfjson_host, lfjson_port): - super().__init__(_lfjson_host=lfjson_host, _lfjson_port=lfjson_port, _debug=False) - self.localrealm = Realm(lfclient_host=lfjson_host, lfclient_port=lfjson_port, debug=False) + super().__init__(_lfjson_host=lfjson_host, _lfjson_port=lfjson_port) + self.localrealm = Realm(lfclient_host=lfjson_host, lfclient_port=lfjson_port) self.check_connect() def run(self):