Skip to content

Commit

Permalink
Fix DEBUG_MAIL
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSuncatcher222 committed Nov 26, 2023
1 parent 4dacab6 commit b911192
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion backend/urban_utopia_2024/app_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,13 @@
else:
DEBUG_DB: bool = False

DEBUG_MAIL = os.getenv('DEBUG')
DEBUG_MAIL = os.getenv('DEBUG_MAIL')
if DEBUG_MAIL == 'True':
DEBUG_MAIL: bool = True
else:
DEBUG_MAIL: bool = False


"""Django data."""


Expand Down

0 comments on commit b911192

Please sign in to comment.