From f28bef230ed5873216508047b04aef0e7e0eea6f Mon Sep 17 00:00:00 2001 From: Jed Reynolds Date: Tue, 9 Jun 2020 13:21:40 -0700 Subject: [PATCH] realm.py: removes variable that lives in superclass --- py-json/realm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-json/realm.py b/py-json/realm.py index e9155d18..bcf465af 100755 --- a/py-json/realm.py +++ b/py-json/realm.py @@ -15,7 +15,7 @@ from generic_cx import GenericCx class Realm(LFCliBase): def __init__(self, lfclient_host="localhost", lfclient_port=8080, debug_on=True): super().__init__(lfclient_host, lfclient_port, debug_on, _halt_on_error=True) - self.lfclient_url = "http://%s:%s" % (lfclient_host, lfclient_port) + #self.lfclient_url = "http://%s:%s" % (lfclient_host, lfclient_port) self.check_connect() # Returns json response from webpage of all layer 3 cross connects