Skip to content

Commit 2f5b105

Browse files
committed
Fixed another bug related to concluded WGs
- Legacy-Id: 2067
1 parent 109bd6b commit 2f5b105

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/wginfo/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,5 +87,5 @@ def wg_documents(request, acronym):
8787

8888
def wg_charter2(request, acronym):
8989
wg = get_object_or_404(IETFWG, group_acronym__acronym=acronym, group_type=1)
90-
concluded = (wg.status != 1)
90+
concluded = (wg.status_id != 1)
9191
return render_to_response('wginfo/wg_charter.html', {'wg': wg, 'concluded':concluded, 'selected':'charter'}, RequestContext(request))

0 commit comments

Comments
 (0)