We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 739be75 + 47bf124 commit a5c3946Copy full SHA for a5c3946
indigo_app/notifications.py
@@ -212,7 +212,7 @@ def notify_new_user_signed_up(user_id):
212
def notify_annotation_reply_posted(annotation_id):
213
try:
214
notifier.notify_reply_to_annotation(Annotation.objects.get(pk=annotation_id))
215
- except Comment.DoesNotExist:
+ except Annotation.DoesNotExist:
216
log.warning("Annotation with id {} doesn't exist, ignoring".format(annotation_id))
217
218
@background(queue='indigo')
0 commit comments