From 1701b95fa86a6f1583d28bee4878ba9def25f788 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Padilla?= Date: Thu, 20 Mar 2014 08:41:31 -0400 Subject: [PATCH 1/2] Small typo fix on FastCGI section --- docs/cookbook.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cookbook.rst b/docs/cookbook.rst index df50e65..4575b8d 100644 --- a/docs/cookbook.rst +++ b/docs/cookbook.rst @@ -177,7 +177,7 @@ FastCGI ------- In case you use FastCGI for deploying Django (you really shouldn't) and aren't -allowed to us Django's runfcgi_ management command (that would automatically +allowed to use Django's runfcgi_ management command (that would automatically handle the setup for your if you've followed the quickstart guide above), make sure to use something like the following script:: From 280be2e3e2e07aa2e417f5bd719ccb2f2699ab1e Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Tue, 15 Apr 2014 15:36:37 -0400 Subject: [PATCH 2/2] Fix database URL test. --- tests/test_values.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_values.py b/tests/test_values.py index ad1ed90..314529d 100644 --- a/tests/test_values.py +++ b/tests/test_values.py @@ -246,11 +246,11 @@ class ValueTests(TestCase): self.assertEqual(value.setup('DATABASE_URL'), { 'default': { 'ENGINE': 'django.db.backends.sqlite3', - 'HOST': None, + 'HOST': '', 'NAME': ':memory:', - 'PASSWORD': None, - 'PORT': None, - 'USER': None, + 'PASSWORD': '', + 'PORT': '', + 'USER': '', }}) def test_email_url_value(self):