diff --git a/sith/settings_sample.py b/sith/settings_sample.py index d6923cef..3b39a796 100644 --- a/sith/settings_sample.py +++ b/sith/settings_sample.py @@ -17,13 +17,8 @@ from django.utils.translation import ugettext_lazy as _ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) -DEV_ENV = True - -if (DEV_ENV): - os.environ['HTTPS'] = "off" - EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' -else: - os.environ['HTTPS'] = "on" +os.environ['HTTPS'] = "off" +EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/