From 1e70d5f9eed83efced78a83bbc8a7537b33bf2ec Mon Sep 17 00:00:00 2001 From: Felipe Martin Date: Wed, 23 Apr 2014 00:01:46 +0200 Subject: [PATCH] Fixed production settings --- shelfzilla/settings/production.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shelfzilla/settings/production.py b/shelfzilla/settings/production.py index abfe87d..16b4fb3 100644 --- a/shelfzilla/settings/production.py +++ b/shelfzilla/settings/production.py @@ -15,5 +15,5 @@ MEDIA_ROOT = os.environ['APP_MEDIA_ROOT'] SECRET_KEY = os.environ['APP_SECRET_KEY'] -INTERNAL_IPS = environ['APP_INTERNAL_IPS'].split(',') -ALLOWED_HOSTS = environ['APP_ALLOWED_HOSTS'].split(',') +INTERNAL_IPS = os.environ['APP_INTERNAL_IPS'].split(',') +ALLOWED_HOSTS = os.environ['APP_ALLOWED_HOSTS'].split(',')