aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial/quickstart.md
diff options
context:
space:
mode:
authorRobert Romano2012-11-18 21:07:44 -0800
committerRobert Romano2012-11-18 21:07:44 -0800
commitf5f1ac49ec9d9cb180a00c791f2701c3f5a2d65b (patch)
tree663e254f3125d1281035d471fc4fa38d7ca3ee3d /docs/tutorial/quickstart.md
parentd541e0c42326443b613df764cbe26a68b852b71d (diff)
parentd1472740bc5f08871343d1a63e409e34d05504cb (diff)
downloaddjango-rest-framework-f5f1ac49ec9d9cb180a00c791f2701c3f5a2d65b.tar.bz2
Update robromano fork with upstream master
Conflicts: docs/topics/credits.md docs/topics/release-notes.md
Diffstat (limited to 'docs/tutorial/quickstart.md')
-rw-r--r--docs/tutorial/quickstart.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/quickstart.md b/docs/tutorial/quickstart.md
index 93da1a59..9a36a2b0 100644
--- a/docs/tutorial/quickstart.md
+++ b/docs/tutorial/quickstart.md
@@ -8,7 +8,7 @@ Create a new Django project, and start a new app called `quickstart`. Once you'
First up we're going to define some serializers in `quickstart/serializers.py` that we'll use for our data representations.
- from django.contrib.auth.models import User, Group
+ from django.contrib.auth.models import User, Group, Permission
from rest_framework import serializers