Remove "thread" argument in iter_unread_messages

It is unused, and no backend implemented it — so it was wrong to have it
in the function signature.
It also does not seem very helpful, we have get_threads() if we want to
do something advanced with treads.

fixes #825
This commit is contained in:
Laurent Bachelier 2012-03-22 19:17:07 +01:00 committed by Romain Bignon
commit 79724c90f5
8 changed files with 8 additions and 9 deletions

View file

@ -172,7 +172,7 @@ class DLFPBackend(BaseBackend, ICapMessages, ICapMessagesPost, ICapContent):
for sub in com.comments:
self._insert_comment(sub, message, getseen)
def iter_unread_messages(self, thread=None):
def iter_unread_messages(self):
for thread in self.iter_threads():
self.fill_thread(thread, 'root', False)
for m in thread.iter_all_messages():