Browse Source

Fixed function call.

Rafał Pitoń 11 years ago
parent
commit
ccdc8e8505
1 changed files with 1 additions and 1 deletions
  1. 1 1
      misago/apps/threadtype/posting/base.py

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

@@ -76,7 +76,7 @@ class PostingBaseView(ViewBase):
             except KeyError:
             except KeyError:
                 pass
                 pass
             if post_mentions:
             if post_mentions:
-                notified_users += [x for x in post_mentions.itervalues()]
+                notified_users += [x for x in post_mentions.values()]
                 self.post.notify_mentioned(self.request, self.type_prefix, post_mentions)
                 self.post.notify_mentioned(self.request, self.type_prefix, post_mentions)
                 self.post.save(force_update=True)
                 self.post.save(force_update=True)
         self.email_watchers(notified_users)
         self.email_watchers(notified_users)