Browse Source

Name fixed. #283

Rafał Pitoń 11 years ago
parent
commit
5a69f20f60

+ 1 - 1
misago/apps/threadtype/posting/newreply.py

@@ -137,7 +137,7 @@ class NewReplyBaseView(PostingBaseView):
                 alert.post('thread', self.type_prefix, self.thread, self.post)
                 alert.save_all()
 
-    def watch_thread(Self):
+    def watch_thread(self):
         if self.request.user.subscribe_reply:
             self.start_watching_thread(
                 self.request.user.subscribe_reply == 2)

+ 1 - 1
misago/apps/threadtype/posting/newthread.py

@@ -84,7 +84,7 @@ class NewThreadBaseView(PostingBaseView):
         self.request.user.last_post = now
         self.request.user.save(force_update=True)
 
-    def watch_thread(Self):
+    def watch_thread(self):
         if self.request.user.subscribe_start:
             self.start_watching_thread(
                 self.request.user.subscribe_start == 2)