From d9e5a4ea5bee99cb3b3d24722e51c56021dd4545 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 16 Jul 2005 23:00:04 +0000 Subject: [PATCH] Removed an unneeded line of code in django/templatetags/adminmedia.py git-svn-id: http://code.djangoproject.com/svn/django/trunk@125 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/templatetags/adminmedia.py | 1 - 1 file changed, 1 deletion(-) diff --git a/django/templatetags/adminmedia.py b/django/templatetags/adminmedia.py index a3f2dd9ca9..2b18252d7d 100644 --- a/django/templatetags/adminmedia.py +++ b/django/templatetags/adminmedia.py @@ -12,7 +12,6 @@ def admin_media_prefix(parser, token): """ {% admin_media_prefix %} """ - bits = token.contents.split() return AdminMediaPrefixNode() template.register_tag('admin_media_prefix', admin_media_prefix)