Fixing exit_on_error mistakes

Signed-off-by: Matthew Stidham <stidmatt@protonmail.com>
This commit is contained in:
Matthew Stidham
2021-03-17 16:14:03 -07:00
parent e000571594
commit e1a865f946
7 changed files with 10 additions and 2 deletions

View File

@@ -49,12 +49,14 @@ class IPV6VariableTime(LFCliBase):
_use_ht160=False,
_cx_type=None,
_debug_on=False,
_exit_on_error=False,
_exit_on_fail=False):
super().__init__(_host,
_port,
_local_realm=realm.Realm(lfclient_host=_host,
lfclient_port=_port,
debug_=_debug_on,
_exit_on_error=_exit_on_error,
_exit_on_fail=_exit_on_fail),
_debug=_debug_on,
_exit_on_fail=_exit_on_fail)