fix debug environment variable bug
This commit is contained in:
parent
2b734012ce
commit
83916570cc
|
@ -1,6 +1,6 @@
|
|||
import os
|
||||
|
||||
DEBUG = os.environ.get('DEBUG')
|
||||
DEBUG = os.environ.get('DEBUG') == "True"
|
||||
|
||||
BRANCH_CHOICES = [
|
||||
["CSE", "CSE"],
|
||||
|
|
Loading…
Reference in New Issue