fix debug environment variable bug

This commit is contained in:
karthikmurakonda 2023-08-02 23:53:01 +05:30
parent 2b734012ce
commit 83916570cc
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
import os
DEBUG = os.environ.get('DEBUG')
DEBUG = os.environ.get('DEBUG') == "True"
BRANCH_CHOICES = [
["CSE", "CSE"],