Mercurial > sat_legacy_website
view settings/__init__.py @ 159:d893828f58f0
settings: replaced http: by https: urls
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 23 Sep 2018 16:19:10 +0200 |
parents | 87382593e514 |
children |
line wrap: on
line source
from .settings import * from .specific import * try: from .production import * # @UnusedWildImport except ImportError: pass try: from .actual_stats import * # @UnusedWildImport except ImportError: pass if DEBUG: EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'