From 10945ebeb84157a284ad96f453ee13305a9d8a94 Mon Sep 17 00:00:00 2001
From: Kevin Marsh <kevinmarsh3@gmail.com>
Date: Wed, 27 May 2015 13:21:24 +0100
Subject: [PATCH] Removed unused import in example code in
 docs/topics/auth/default.txt

---
 docs/topics/auth/default.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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)