From 2e1a084626d73f924d09989b3004b1c5cfdeb3bc Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 12 Dec 2012 03:24:01 -0400 Subject: [PATCH] Fix template variable name --- apps/tags/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/tags/views.py b/apps/tags/views.py index a9904a7a20..2ee75e6f8f 100644 --- a/apps/tags/views.py +++ b/apps/tags/views.py @@ -329,7 +329,7 @@ def tag_remove(request, document_id=None, document_id_list=None, tag_id=None, ta context['title'] = _(u'Are you sure you wish to remove the tags: %(tags)s from the document: %(document)s?') % { 'tags': ', '.join([unicode(d) for d in tags]), 'document': ', '.join([unicode(d) for d in documents])} else: - context['title'] = _(u'Are you sure you wish to remove the tags %(tag)s from the documents: %(documents)s?') % { + context['title'] = _(u'Are you sure you wish to remove the tags %(tags)s from the documents: %(documents)s?') % { 'tags': ', '.join([unicode(d) for d in tags]), 'documents': ', '.join([unicode(d) for d in documents])} if request.method == 'POST':