diff --git a/py-json/mac_vlan_profile.py b/py-json/mac_vlan_profile.py index 396b3393..edfbdc82 100644 --- a/py-json/mac_vlan_profile.py +++ b/py-json/mac_vlan_profile.py @@ -20,7 +20,7 @@ class MACVLANProfile(LFCliBase): admin_down=False, dhcp=False, debug_=False): - super().__init__(lfclient_host, lfclient_port, debug_, _halt_on_error=True) + super().__init__(lfclient_host, lfclient_port, debug_) self.local_realm = local_realm self.num_macvlans = num_macvlans self.macvlan_parent = macvlan_parent diff --git a/py-json/multicast_profile.py b/py-json/multicast_profile.py index 3d384ae3..21b3d02f 100644 --- a/py-json/multicast_profile.py +++ b/py-json/multicast_profile.py @@ -17,7 +17,7 @@ class MULTICASTProfile(LFCliBase): :param number_template_: how many zeros wide we padd, possibly a starting integer with left padding :param debug_: """ - super().__init__(lfclient_host, lfclient_port, debug_, _halt_on_error=True) + super().__init__(lfclient_host, lfclient_port, debug_) self.lfclient_url = "http://%s:%s" % (lfclient_host, lfclient_port) self.debug = debug_ self.local_realm = local_realm