﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
1772	[patch]  contrib.comments user_is_moderator() wrong function call	Jure Cuhalev <gandalf@…>	Adrian Holovaty	"In django.contrib.comments.models.py     def user_is_moderator(self, user): (line 59) the function calls: 

  for g in user.group_set.all():

but group_set doesn't exist, so we get a nice error telling us that. Replacing this with:

  for g in user.groups.all():

makes things work again.
"	defect	closed	Core (Other)	dev	normal	fixed		gandalf@…	Unreviewed	1	0	0	0	0	0
