]> git.openstreetmap.org Git - osqa.git/commitdiff
Resolves Jira-735, take another approach to merge the two dicts
authorjordan <jordan@0cfe37f9-358a-4d5e-be75-b63607b5c754>
Mon, 1 Aug 2011 11:13:52 +0000 (11:13 +0000)
committerjordan <jordan@0cfe37f9-358a-4d5e-be75-b63607b5c754>
Mon, 1 Aug 2011 11:13:52 +0000 (11:13 +0000)
git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@1146 0cfe37f9-358a-4d5e-be75-b63607b5c754

forum/views/readers.py

index a16712e2164805193ca44d45adf4245adcc27b36..8dad7801a1720afc8b0a7c551a5fc6676f5a650b 100644 (file)
@@ -119,15 +119,15 @@ def tag(request, tag):
     }
 
     # The context returned by the question_list function, contains info about the questions
-    question_context = question_list(request,
+    question_context = dict(question_list(request,
                          questions,
                          mark_safe(_(u'questions tagged <span class="tag">%(tag)s</span>') % {'tag': tag}),
                          None,
                          mark_safe(_(u'Questions Tagged With %(tag)s') % {'tag': tag}),
-                         False)
+                         False))
 
     # Create the combined context
-    context = dict(question_context, **tag_context)
+    context = dict(question_context.items() + tag_context.items())
 
     return context