From 83916570cc4d42967d9731defff93a6d8d29ca16 Mon Sep 17 00:00:00 2001 From: karthikmurakonda Date: Wed, 2 Aug 2023 23:53:01 +0530 Subject: [PATCH] fix debug environment variable bug --- CDC_Backend/APIs/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDC_Backend/APIs/constants.py b/CDC_Backend/APIs/constants.py index b83efe1..eecda64 100644 --- a/CDC_Backend/APIs/constants.py +++ b/CDC_Backend/APIs/constants.py @@ -1,6 +1,6 @@ import os -DEBUG = os.environ.get('DEBUG') +DEBUG = os.environ.get('DEBUG') == "True" BRANCH_CHOICES = [ ["CSE", "CSE"],