Skip to content

Commit b0a7a9e

Browse files
bashuclaudep
authored andcommitted
Fixed typo in error message
1 parent 08d9b40 commit b0a7a9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

django_comments/views/comments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def post_comment(request, next=None, using=None):
6464
escape(ctype), escape(object_pk)))
6565
except (ValueError, ValidationError) as e:
6666
return CommentPostBadRequest(
67-
"Attempting go get content-type %r and object PK %r exists raised %s" % (
67+
"Attempting to get content-type %r and object PK %r raised %s" % (
6868
escape(ctype), escape(object_pk), e.__class__.__name__))
6969

7070
# Do we want to preview the comment?

0 commit comments

Comments
 (0)