1
0
mirror of https://github.com/django/django.git synced 2024-12-23 01:25:58 +00:00

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
This commit is contained in:
Adrian Holovaty 2005-07-16 23:00:04 +00:00
parent a22f823e00
commit d9e5a4ea5b

View File

@ -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)