From 5e54f6b263d981abd5aa1a46d208ee48f00f601d Mon Sep 17 00:00:00 2001 From: Brian Rosner Date: Tue, 22 Dec 2009 16:00:49 +0000 Subject: [PATCH] Added missing quote in contributing settings code git-svn-id: http://code.djangoproject.com/svn/django/trunk@11955 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/internals/contributing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/internals/contributing.txt b/docs/internals/contributing.txt index 4649e4c8b48ae..4ec6e5d26dad1 100644 --- a/docs/internals/contributing.txt +++ b/docs/internals/contributing.txt @@ -815,7 +815,7 @@ following is a minimal settings file that can be used to test SQLite:: }, 'other': { 'ENGINE': 'django.db.backends.sqlite3', - 'TEST_NAME: 'other_db' + 'TEST_NAME': 'other_db' } }