Skip to content

Commit

Permalink
settings/dev: bugfix local.py should override any other settings
Browse files Browse the repository at this point in the history
  • Loading branch information
hklarner committed Sep 18, 2023
1 parent 0381c12 commit 2907d0e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions adhocracy-plus/config/settings/dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,6 @@

INTERNAL_IPS = ("127.0.0.1", "localhost")

try:
from .local import *
except ImportError:
pass

try:
INSTALLED_APPS += tuple(ADDITIONAL_APPS)
except NameError:
Expand Down Expand Up @@ -54,3 +49,8 @@
}

CELERY_TASK_ALWAYS_EAGER = True

try:
from .local import *
except ImportError:
pass

0 comments on commit 2907d0e

Please sign in to comment.