From 0d0b66c3c0b4d6f3ac87377bae2d7b258b2b11a2 Mon Sep 17 00:00:00 2001 From: Patrick Ulbrich Date: Sat, 17 Sep 2016 12:34:32 +0200 Subject: [PATCH] Fix exception message --- Mailnag/backends/pop3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mailnag/backends/pop3.py b/Mailnag/backends/pop3.py index 27d5e7b..8ac360e 100644 --- a/Mailnag/backends/pop3.py +++ b/Mailnag/backends/pop3.py @@ -120,7 +120,7 @@ class POP3MailboxBackend(MailboxBackend): def request_folders(self): - raise NotImplementedError("POP3 does not support notifications") + raise NotImplementedError("POP3 does not support folders") def notify_next_change(self, callback=None, timeout=None):