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

@@ -49,14 +49,12 @@ class L3VariableTime(Realm):
lfclient_host="localhost",
lfclient_port=8080,
debug=False,
_halt_on_error=False,
_exit_on_fail=False,
_proxy_str=None,
_capture_signal_list=[]):
super().__init__(lfclient_host=lfclient_host,
lfclient_port=lfclient_port,
debug_=debug,
halt_on_error_=_halt_on_error,
_exit_on_fail=_exit_on_fail,
_proxy_str=_proxy_str,
_capture_signal_list=_capture_signal_list)