aboutsummaryrefslogtreecommitdiffhomepage
path: root/bindings
diff options
context:
space:
mode:
authorGravatar Justus Winter <4winter@informatik.uni-hamburg.de>2012-04-30 18:27:15 +0200
committerGravatar Justus Winter <4winter@informatik.uni-hamburg.de>2012-04-30 18:27:15 +0200
commitbbc38c5c11d76ec96a4648d33c0368584a11c748 (patch)
tree22f06604b86b30111d0f06c844832934919a8385 /bindings
parente74b1f807bea9b8572a71757da9a3003e24a02b8 (diff)
python: fix Message.get_filenames
Do not to use the removed function Filenames.as_iterator. Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de>
Diffstat (limited to 'bindings')
-rw-r--r--bindings/python/notmuch/message.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/python/notmuch/message.py b/bindings/python/notmuch/message.py
index f1faf1da..54c4e4b2 100644
--- a/bindings/python/notmuch/message.py
+++ b/bindings/python/notmuch/message.py
@@ -259,7 +259,7 @@ class Message(Python3StringMixIn):
files_p = Message._get_filenames(self._msg)
- return Filenames(files_p, self).as_generator()
+ return Filenames(files_p, self)
def get_flag(self, flag):
"""Checks whether a specific flag is set for this message