diff options
| author | Eugene MechanisM | 2012-11-17 04:03:43 +0400 | 
|---|---|---|
| committer | Eugene MechanisM | 2012-11-17 04:03:43 +0400 | 
| commit | 4068323df4a8a8ad8825d5e0ed1d31ee2a36484f (patch) | |
| tree | 62afa48a2167e42e105617261038342580404a83 /docs/tutorial | |
| parent | 2263ed8b9409c709f6dbad2157f8debffb16c1d8 (diff) | |
| download | django-rest-framework-4068323df4a8a8ad8825d5e0ed1d31ee2a36484f.tar.bz2 | |
Missing import of "Permission" model in docs
Missing import of "Permission" model in docs
Diffstat (limited to 'docs/tutorial')
| -rw-r--r-- | docs/tutorial/quickstart.md | 2 | 
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 | 
