Fixing halt_on_error errors

Signed-off-by: Matthew Stidham <stidmatt@protonmail.com>
This commit is contained in:
Matthew Stidham
2021-03-17 15:48:42 -07:00
parent 052319d2ce
commit e000571594
6 changed files with 4 additions and 8 deletions

View File

@@ -8,7 +8,7 @@ import time
class GenCXProfile(LFCliBase):
def __init__(self, lfclient_host, lfclient_port, local_realm, debug_=False):
super().__init__(lfclient_host, lfclient_port, debug_, _halt_on_error=True)
super().__init__(lfclient_host, lfclient_port, debug_)
self.lfclient_host = lfclient_host
self.lfclient_port = lfclient_port
self.lfclient_url = "http://%s:%s" % (lfclient_host, lfclient_port)