From 1f4d2f3d8a0d5ae5b2aef7a3ff54c988ee1ef427 Mon Sep 17 00:00:00 2001 From: Rocky Duan Date: Mon, 13 Aug 2012 23:27:55 -0700 Subject: [PATCH] fixed updating bug --- lms/lib/comment_client/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/lib/comment_client/models.py b/lms/lib/comment_client/models.py index 414dd0ced1..5444368630 100644 --- a/lms/lib/comment_client/models.py +++ b/lms/lib/comment_client/models.py @@ -72,7 +72,7 @@ class Model(object): else: raise AttributeError("Field {0} does not exist".format(k)) - def updatable_attribtes(self): + def updatable_attributes(self): return extract(self.attributes, self.updatable_fields) def initializable_attributes(self):