From 809a75765e7b44e00ddb70bfc0d3a40f587972d0 Mon Sep 17 00:00:00 2001 From: downtownallday Date: Sun, 18 Sep 2022 15:44:01 -0400 Subject: [PATCH] replace FLASK_ENV, which has been deprecated, with FLASK_DEBUG --- tests/bin/m-debug.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/bin/m-debug.sh b/tests/bin/m-debug.sh index 9afecfbd..2f55eb40 100755 --- a/tests/bin/m-debug.sh +++ b/tests/bin/m-debug.sh @@ -4,7 +4,7 @@ cd "$(dirname "$0")/../../management" || exit 1 systemctl stop mailinabox source /usr/local/lib/mailinabox/env/bin/activate export DEBUG=1 -export FLASK_ENV=development +export FLASK_DEBUG=1 if ! systemctl is-active --quiet miabldap-capture; then export CAPTURE_STORAGE_ROOT=/mailinabox/management/reporting/capture/tests fi