summaryrefslogtreecommitdiff
path: root/alot/db.py
diff options
context:
space:
mode:
authorpazz <patricktotzke@gmail.com>2011-07-09 13:09:42 +0100
committerpazz <patricktotzke@gmail.com>2011-07-09 13:09:42 +0100
commit679c7a8b3fec4d49cf5e64867f09d73d2190439e (patch)
tree3065a6f9d59b17d3536d515c8cfdc5c1fa5dee74 /alot/db.py
parent3c51d28567ce43e98bc74e13d21b067c5c21fbca (diff)
typos
Diffstat (limited to 'alot/db.py')
-rw-r--r--alot/db.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/alot/db.py b/alot/db.py
index 2c92d960..1fab7c5e 100644
--- a/alot/db.py
+++ b/alot/db.py
@@ -297,7 +297,7 @@ class Message:
def get_message_parts(self):
"""returns a list of all body parts of this message"""
out = []
- for msg in self._get_email().walk():
+ for msg in self.get_email().walk():
if not msg.is_multipart():
out.append(msg)
return out
@@ -314,7 +314,7 @@ class Message:
def get_replies(self):
"""returns a list of replies to this msg"""
- t = self.get_tread()
+ t = self.get_thread()
return t.get_replies_to(self)
def get_datestring(self, pretty=True):