Mercurial > sat_legacy_website
view settings/__init__.py @ 158:19d1f4d465fc
quick fix for news.html, page was using old URL
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 31 Mar 2018 11:39:41 +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'