diff options
| author | Rob Crittenden <rcritten@redhat.com> | 2018-03-13 11:27:16 -0400 |
|---|---|---|
| committer | Christian Heimes <cheimes@redhat.com> | 2018-03-19 17:38:41 +0100 |
| commit | 64fca87a52e361718b46aaec8d1d5eea0f5ccdbc (patch) | |
| tree | 44aa2098f07212a71de2af08bdad870c48fa7a4a /ipapython | |
| parent | 68c7b036893fcdad7cc2364b0fc2a841366493ef (diff) | |
Remove the Continuous installer class, it is unused
https://pagure.io/freeipa/issue/7330
Signed-off-by: Rob Crittenden <rcritten@redhat.com>
Reviewed-By: Stanislav Laznicka <slaznick@redhat.com>
Diffstat (limited to 'ipapython')
| -rw-r--r-- | ipapython/install/common.py | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/ipapython/install/common.py b/ipapython/install/common.py index ca1e8fd30..eaf78e379 100644 --- a/ipapython/install/common.py +++ b/ipapython/install/common.py @@ -7,12 +7,11 @@ Common stuff. """ import logging -import traceback from . import core from .util import from_ -__all__ = ['step', 'Installable', 'Interactive', 'Continuous', 'installer', +__all__ = ['step', 'Installable', 'Interactive', 'installer', 'uninstaller'] logger = logging.getLogger(__name__) @@ -88,16 +87,6 @@ class Interactive(core.Configurable): interactive = core.Property(False) -class Continuous(core.Configurable): - def _handle_execute_exception(self, exc_info): - try: - super(Continuous, self)._handle_execute_exception(exc_info) - except BaseException as e: - logger.debug("%s", traceback.format_exc()) - if isinstance(e, Exception): - logger.error("%s", e) - - def installer(cls): class Installer(cls, Installable): def __init__(self, **kwargs): |
