From d4865932b5ded4bd87179b86f0010bb7f78025b2 Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Mon, 17 Oct 2022 12:46:48 +0200 Subject: [PATCH] Minor change --- lib/cr_tf/app.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/cr_tf/app.py b/lib/cr_tf/app.py index 6548e11..cccb6b0 100644 --- a/lib/cr_tf/app.py +++ b/lib/cr_tf/app.py @@ -47,7 +47,7 @@ from .xlate import __base_dir__ as __xlate_base_dir__ from .xlate import __mo_file__ as __xlate_mo_file__ from .xlate import XLATOR, LOCALE_DIR, DOMAIN -__version__ = '1.2.0' +__version__ = '1.2.1' LOG = logging.getLogger(__name__) SIGNAL_NAMES = { @@ -160,6 +160,8 @@ class CrTfApplication(BaseApplication): Class for the application objects. """ + show_simulate_option = True + re_prefix = re.compile(r'^[a-z0-9][a-z0-9_]*$', re.IGNORECASE) re_anum = re.compile(r'[^A-Z0-9_]+', re.IGNORECASE) fake_root_passwd = generate_password(12) -- 2.39.5