From b7e9a67732bd8223b9b64aaaf3325bd123a8c55c Mon Sep 17 00:00:00 2001 From: wuaho Date: Thu, 27 May 2021 18:38:48 +0800 Subject: [PATCH] 1 --- core/config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/config.py b/core/config.py index 160a815..93be4ff 100644 --- a/core/config.py +++ b/core/config.py @@ -261,7 +261,7 @@ class Produce(Settings): MDB_DB: str = 'xdata' -settings = Debug() - -if sys.platform != 'win32': +if sys.platform == 'linux': settings = Produce() +else: + settings = Debug()