Syntax error

This commit is contained in:
Grégory Soutadé 2012-10-23 19:03:10 +02:00
parent 190eb3d9b8
commit 8b015c7e85
1 changed files with 1 additions and 1 deletions

View File

@ -546,7 +546,7 @@ def add_comment(request, post_id, parent_id):
the_comment = the_comment.replace('>', '>')
comment = Comment(post=post, parent=parentComment, date=datetime.now(), author=request.POST['author'],\
email=request.POST['email'], the_comment=the_comment], ip=ip)
email=request.POST['email'], the_comment=the_comment, ip=ip)
comment.save()
engine = globals()['post']