Skip to content

Commit

Permalink
Merge pull request #184 from snypy/extend_settings_fix
Browse files Browse the repository at this point in the history
Fix comparison in settings
  • Loading branch information
nezhar authored Sep 10, 2024
2 parents 3c4ec12 + 8cb3c20 commit fab8a84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snypy/snypy/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"content_pages",
]

if RUN_MODE is not "production":
if RUN_MODE != "production":
INSTALLED_APPS.append("django_linear_migrations")


Expand Down

0 comments on commit fab8a84

Please sign in to comment.