From 47d05dc37bd3e880bb2449960da0482b1359bca4 Mon Sep 17 00:00:00 2001 From: Cp0204 Date: Wed, 4 Dec 2024 16:21:27 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20=E4=BF=AE=E6=AD=A3=E9=BB=98?= =?UTF-8?q?=E8=AE=A4=E8=B0=83=E8=AF=95=E6=A8=A1=E5=BC=8F=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将默认 DEBUG 值设置为 False,以避免意外的调试模式激活 --- app/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/run.py b/app/run.py index caa5e18..ad22b59 100644 --- a/app/run.py +++ b/app/run.py @@ -42,7 +42,7 @@ def get_app_ver(): PYTHON_PATH = "python3" if os.path.exists("/usr/bin/python3") else "python" SCRIPT_PATH = os.environ.get("SCRIPT_PATH", "./quark_auto_save.py") CONFIG_PATH = os.environ.get("CONFIG_PATH", "./config/quark_config.json") -DEBUG = os.environ.get("DEBUG", True) +DEBUG = os.environ.get("DEBUG", False) task_plugins_config = {}