From 7707c2e84477dd13e3173ac50252ee8ed97336d8 Mon Sep 17 00:00:00 2001 From: Bill Prin Date: Tue, 1 Mar 2016 11:58:04 -0800 Subject: [PATCH] Remove database settings Accidentally committed them --- container_engine/django_tutorial/mysite/settings.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/container_engine/django_tutorial/mysite/settings.py b/container_engine/django_tutorial/mysite/settings.py index 1a16d7693b53..b91a24dd64f5 100644 --- a/container_engine/django_tutorial/mysite/settings.py +++ b/container_engine/django_tutorial/mysite/settings.py @@ -78,10 +78,10 @@ DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', - 'NAME': 'polls', - 'USER': 'django_user', - 'PASSWORD': 'django', - 'HOST': '173.194.104.255', + 'NAME': '', + 'USER': '', + 'PASSWORD': '', + 'HOST': '', 'PORT': '3306', } }