summaryrefslogtreecommitdiff
path: root/service/app/adapter
diff options
context:
space:
mode:
authorBruno Wagner Goncalves <bwagner@thoughtworks.com>2014-08-07 15:41:55 -0300
committerBruno Wagner Goncalves <bwagner@thoughtworks.com>2014-08-07 15:41:55 -0300
commit579dafc737ef4a3af98cede0af72bb492ca8a944 (patch)
tree3ebd88f4e8ea22833ca163ec91dc14d19c15065a /service/app/adapter
parente92847eae88a13cf9c6f407112c2a42b7c46e808 (diff)
Adapted run after module changes and changed mail service to return the mailbox messages
Diffstat (limited to 'service/app/adapter')
-rw-r--r--service/app/adapter/mail_service.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/service/app/adapter/mail_service.py b/service/app/adapter/mail_service.py
index b9ea238f..c2ba5e5e 100644
--- a/service/app/adapter/mail_service.py
+++ b/service/app/adapter/mail_service.py
@@ -28,8 +28,7 @@ class MailService:
self.mail_box = self.leap_session.account.getMailbox(self.mailbox_name)
def mails(self, query):
- self.mail_box.messages
- return []
+ return self.mail_box.messages
def drafts(self):