From 9ec8aa5e5d42ac4529846f7eae6bf4982800abff Mon Sep 17 00:00:00 2001 From: darkryder Date: Wed, 21 Jan 2015 22:25:57 +0530 Subject: Fixed #24149 -- Normalized tuple settings to lists. --- docs/intro/tutorial01.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/intro/tutorial01.txt') diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt index 5d4eaca76c..bfce99de0b 100644 --- a/docs/intro/tutorial01.txt +++ b/docs/intro/tutorial01.txt @@ -422,7 +422,7 @@ look like this: .. snippet:: :filename: mysite/settings.py - INSTALLED_APPS = ( + INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', @@ -430,7 +430,7 @@ look like this: 'django.contrib.messages', 'django.contrib.staticfiles', 'polls', - ) + ] Now Django knows to include the ``polls`` app. Let's run another command: -- cgit v1.3