Merge pull request #170 from CDC-IITDH/email_verify_manual

fix debug environment variable bug
This commit is contained in:
karthik mv 2023-08-03 00:23:44 +05:30 committed by GitHub
commit c315759a81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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"],