from .handler import CrTplHandler
-__version__ = '1.0.0'
+__version__ = '1.0.1'
LOG = logging.getLogger(__name__)
""" Base exception class for all exceptions in this application."""
pass
+
# =============================================================================
class NrTemplatesOptionAction(argparse.Action):
from __future__ import absolute_import, print_function
# Standard module
-import os
import logging
import re
import random
from .config import CrTplConfiguration
-__version__ = '1.0.0'
+__version__ = '1.0.1'
LOG = logging.getLogger(__name__)
TZ = pytz.timezone('Europe/Berlin')
+
# =============================================================================
class TempVmExistsError(ExpectedHandlerError):
"""Special error class for the case, if the temporary VM is already existing."""