From 3fd890abbdbf665600ca723a86ec968f46b4bdcf Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Sat, 11 Feb 2017 14:48:55 +0000 Subject: [PATCH] Fixed a urlreverse kwargs bug. - Legacy-Id: 12819 --- ietf/group/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/group/utils.py b/ietf/group/utils.py index 7e9c068a6..bba2af459 100644 --- a/ietf/group/utils.py +++ b/ietf/group/utils.py @@ -220,7 +220,7 @@ def construct_group_menu_context(request, group, selected, group_type, others): if group.state_id != "conclude" and (is_admin or can_manage): - actions.append((u"Edit group", urlreverse("ietf.group.views_edit.edit", dict(kwargs, action="edit")))) + actions.append((u"Edit group", urlreverse("ietf.group.views_edit.edit", kwargs=dict(kwargs, action="edit")))) if group.features.customize_workflow and (is_admin or can_manage): actions.append((u"Customize workflow", urlreverse("ietf.group.views_edit.customize_workflow", kwargs=kwargs)))