From 9d43891869701e9d3389767fec86913f0a1bee91 Mon Sep 17 00:00:00 2001 From: Nils <> Date: Fri, 1 Jan 2021 21:55:04 +0100 Subject: [PATCH] fix --mute regression --- template/start.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/start.py b/template/start.py index 72cc5e7..5f5d869 100644 --- a/template/start.py +++ b/template/start.py @@ -364,7 +364,7 @@ else: logger.info("Looking for calfbox shared library systemwide through ctypes.util.find_library") -if compiledVersion: +if compiledVersion and not args.mute: try: from sitepackages.calfbox import cbox logger.info(f"Calbox Python module loaded: {os.path.abspath(cbox.__file__)}")