locale.setlocale(locale.LC_ALL, '')
-app = CrTplApplication(appname=appname)
+app = CrTplApplication(appname=appname, base_dir=base_dir)
app.initialized = True
if app.verbose > 2:
from .obj import PpBaseObject
-__version__ = '0.1.1'
+__version__ = '0.1.2'
LOG = logging.getLogger(__name__)
self._init_env()
self._perform_env()
+ self.post_init()
+
# -----------------------------------------------------------
@property
def exit_value(self):
"""
- if self.simulate:
- LOG.warn("Simulation mode - nothing is really done.")
+ pass
# -------------------------------------------------------------------------
def _run(self):
"""
- raise FunctionNotImplementedError('_run', self.__class__.__name__)
+ LOG.info("Starting ...")
# -------------------------------------------------------------------------
def __call__(self):