Kaydet (Commit) 2e43934a authored tarafından Gary Wilson Jr's avatar Gary Wilson Jr

Fixed #6324 -- Fixed `get()` call in `UserFlagManager.flag()`.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@7039 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst 332e68d5
......@@ -270,7 +270,7 @@ class UserFlagManager(models.Manager):
if int(comment.user_id) == int(user.id):
return # A user can't flag his own comment. Fail silently.
try:
f = self.objects.get(user__pk=user.id, comment__pk=comment.id)
f = self.get(user__pk=user.id, comment__pk=comment.id)
except self.model.DoesNotExist:
from django.core.mail import mail_managers
f = self.model(None, user.id, comment.id, None)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment