mark_safe(_(u'Questions Tagged With %(tag)s') % {'tag': tag}),
False)
+ # If the return data type is not a dict just return it
+ if not isinstance(question_context, dict):
+ return question_context
+
+ question_context = dict(question_context)
+
# Create the combined context
- context = dict(question_context, **tag_context)
+ context = dict(question_context.items() + tag_context.items())
return context