realm.py: should not need self.halt_on_error because that's what self.exit_on_error is for

Signed-off-by: Jed Reynolds <jed@candelatech.com>
This commit is contained in:
Jed Reynolds
2021-03-02 12:48:30 -08:00
parent 2b8eacdd19
commit 2a27a70489

View File

@@ -845,7 +845,7 @@ class Realm(LFCliBase):
class BaseProfile:
def __init__(self, local_realm, debug=False):
self.parent_realm = local_realm
self.halt_on_error = False
# self.halt_on_error = False
self.exit_on_error = False
self.debug = debug or local_realm.debug