diff options
| author | Kevin Marsh <kevinmarsh3@gmail.com> | 2015-05-27 13:21:24 +0100 |
|---|---|---|
| committer | Kevin Marsh <kevinmarsh3@gmail.com> | 2015-05-27 13:26:20 +0100 |
| commit | 10945ebeb84157a284ad96f453ee13305a9d8a94 (patch) | |
| tree | beec696fdf482c44f182f58924e97b4e6b8474fb /docs | |
| parent | ff8a02ae0b33ee52050e22909d432a3aa060d683 (diff) | |
Removed unused import in example code in docs/topics/auth/default.txt
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/auth/default.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/auth/default.txt b/docs/topics/auth/default.txt index f7cb74d507..2df53816de 100644 --- a/docs/topics/auth/default.txt +++ b/docs/topics/auth/default.txt @@ -244,7 +244,7 @@ example, you can create the ``can_publish`` permission for a ``BlogPost`` model in ``myapp``:: from myapp.models import BlogPost - from django.contrib.auth.models import Group, Permission + from django.contrib.auth.models import Permission from django.contrib.contenttypes.models import ContentType content_type = ContentType.objects.get_for_model(BlogPost) |
