1
0
Fork 1
mirror of https://github.com/coddingtonbear/django-mailbox.git synced 2026-07-10 06:48:19 +02:00

Function name change

This commit is contained in:
Mike Varga 2022-10-14 13:54:56 -04:00
parent 9c0cac66e2
commit 4e479e8f69
4 changed files with 6 additions and 6 deletions

View file

@ -25,5 +25,5 @@ class GenericFileMailbox(EmailTransport):
repository.flush()
repository.unlock()
def get_new_message_ro(self, since=None):
raise NotImplementedError("GenericFileMailbox.get_new_message_ro not implemented!")
def get_message_ro(self, since=None):
raise NotImplementedError("GenericFileMailbox.get_message_ro not implemented!")