Skip to content

Commit

Permalink
Fix init_sentry import
Browse files Browse the repository at this point in the history
  • Loading branch information
ndittren committed Oct 9, 2024
1 parent 15acf56 commit 2a5134e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lanretam/settings_production.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from lanretam.settings_shared import * # noqa f403
from ctlsettings.production import common
from django.conf import settings, init_sentry
from ctlsettings.production import common, init_sentry
from django.conf import settings

locals().update(
common(
Expand Down
4 changes: 2 additions & 2 deletions lanretam/settings_staging.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from lanretam.settings_shared import * # noqa F403
from ctlsettings.staging import common
from django.conf import settings, init_sentry
from ctlsettings.staging import common, init_sentry
from django.conf import settings

locals().update(
common(
Expand Down

0 comments on commit 2a5134e

Please sign in to comment.