from .obj import PpBaseObjectError, PpBaseObject
-__version__ = '0.3.3'
+__version__ = '0.3.4'
LOG = logging.getLogger(__name__)
)
if self.show_simulate_opt:
+ help_msg = getattr(self, '_simulate_opt_help', None)
+ if not help_msg or str(help_msg) == '':
+ help_msg = "Simulation af all actions, nothing is really done."
general_group.add_argument(
"-s", "--simulate",
- action="store_true", dest="simulate",
- help="Simulation af all actions, nothing is really done.",
+ action="store_true", dest="simulate", help=help_msg,
)
general_group.add_argument(