Skip to content

Commit 3fd890a

Browse files
committed
Fixed a urlreverse kwargs bug.
- Legacy-Id: 12819
1 parent aa5e61d commit 3fd890a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/group/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def construct_group_menu_context(request, group, selected, group_type, others):
220220

221221

222222
if group.state_id != "conclude" and (is_admin or can_manage):
223-
actions.append((u"Edit group", urlreverse("ietf.group.views_edit.edit", dict(kwargs, action="edit"))))
223+
actions.append((u"Edit group", urlreverse("ietf.group.views_edit.edit", kwargs=dict(kwargs, action="edit"))))
224224

225225
if group.features.customize_workflow and (is_admin or can_manage):
226226
actions.append((u"Customize workflow", urlreverse("ietf.group.views_edit.customize_workflow", kwargs=kwargs)))

0 commit comments

Comments
 (0)