From 8cb3c200f5c0ced12d494648ecad3218f5173bb8 Mon Sep 17 00:00:00 2001 From: Harald Nezbeda Date: Tue, 10 Sep 2024 22:44:21 +0200 Subject: [PATCH] Fix comparison in settings --- snypy/snypy/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snypy/snypy/settings.py b/snypy/snypy/settings.py index 4f33e05..5fb623d 100644 --- a/snypy/snypy/settings.py +++ b/snypy/snypy/settings.py @@ -49,7 +49,7 @@ "content_pages", ] -if RUN_MODE is not "production": +if RUN_MODE != "production": INSTALLED_APPS.append("django_linear_migrations")