summaryrefslogtreecommitdiff
path: root/docs/intro/reusable-apps.txt
diff options
context:
space:
mode:
authordarkryder <sambhav13085@iiitd.ac.in>2015-01-21 22:25:57 +0530
committerTim Graham <timograham@gmail.com>2015-02-03 14:59:45 -0500
commit9ec8aa5e5d42ac4529846f7eae6bf4982800abff (patch)
tree6a1195ff3831031f8207e18e4dcf69015fb4c50c /docs/intro/reusable-apps.txt
parent570912a97d5051fa3aeacd9d16c3be9afcf92198 (diff)
Fixed #24149 -- Normalized tuple settings to lists.
Diffstat (limited to 'docs/intro/reusable-apps.txt')
-rw-r--r--docs/intro/reusable-apps.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/intro/reusable-apps.txt b/docs/intro/reusable-apps.txt
index 3c8041e857..d20bd37210 100644
--- a/docs/intro/reusable-apps.txt
+++ b/docs/intro/reusable-apps.txt
@@ -159,10 +159,10 @@ this. For a small app like polls, this process isn't too difficult.
1. Add "polls" to your INSTALLED_APPS setting like this::
- INSTALLED_APPS = (
+ INSTALLED_APPS = [
...
'polls',
- )
+ ]
2. Include the polls URLconf in your project urls.py like this::