summaryrefslogtreecommitdiffstats
path: root/ipapython/install/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipapython/install/common.py')
-rw-r--r--ipapython/install/common.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipapython/install/common.py b/ipapython/install/common.py
index 799ce5009..fc8e33291 100644
--- a/ipapython/install/common.py
+++ b/ipapython/install/common.py
@@ -86,9 +86,9 @@ class Interactive(core.Configurable):
class Continuous(core.Configurable):
- def _handle_exception(self, exc_info):
+ def _handle_execute_exception(self, exc_info):
try:
- super(Continuous, self)._handle_exception(exc_info)
+ super(Continuous, self)._handle_execute_exception(exc_info)
except BaseException as e:
self.log.debug(traceback.format_exc())
if isinstance(e, Exception):