summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorKevin Marsh <kevinmarsh3@gmail.com>2015-05-27 13:21:24 +0100
committerTim Graham <timograham@gmail.com>2015-05-27 09:41:22 -0400
commitd411586866f7efe797b2d567028d9b7d0712c88e (patch)
treeabc258f568597b2ec5d1e2219b01a482e8b4ec72 /docs
parentb16f84f15b1344d2a3df8149565cfc8de803eb77 (diff)
[1.8.x] Removed unused import in example code in docs/topics/auth/default.txt
Backport of 10945ebeb84157a284ad96f453ee13305a9d8a94 from master
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 2caf4ca3d7..fce77733d3 100644
--- a/docs/topics/auth/default.txt
+++ b/docs/topics/auth/default.txt
@@ -246,7 +246,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)