summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorKevin Marsh <kevinmarsh3@gmail.com>2015-05-27 13:21:24 +0100
committerKevin Marsh <kevinmarsh3@gmail.com>2015-05-27 13:26:20 +0100
commit10945ebeb84157a284ad96f453ee13305a9d8a94 (patch)
treebeec696fdf482c44f182f58924e97b4e6b8474fb /docs
parentff8a02ae0b33ee52050e22909d432a3aa060d683 (diff)
Removed unused import in example code in docs/topics/auth/default.txt
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/auth/default.txt2
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)