From 8b0c30e69f1955d6196346a259ef08f6e50dca66 Mon Sep 17 00:00:00 2001 From: Valera Rozuvan Date: Thu, 7 Mar 2013 17:48:40 +0200 Subject: [PATCH] Fixed small typo. --- lms/djangoapps/django_comment_client/base/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/djangoapps/django_comment_client/base/views.py b/lms/djangoapps/django_comment_client/base/views.py index 11a5a639a9..152970af18 100644 --- a/lms/djangoapps/django_comment_client/base/views.py +++ b/lms/djangoapps/django_comment_client/base/views.py @@ -82,7 +82,7 @@ def create_thread(request, course_id, commentable_id): else: anonymous_to_peers = False - thread = cc.Thread(**extract(post,/ ['body', 'title', 'tags'])) + thread = cc.Thread(**extract(post, ['body', 'title', 'tags'])) thread.update_attributes(**{ 'anonymous': anonymous, 'anonymous_to_peers': anonymous_to_peers,