Dennis Lee Bieber <[email protected]> wrote: > On Fri, 25 Jun 2021 09:19:49 +0100, Chris Green <[email protected]> declaimed the > following: > > > > >Here's the full program where I'm encountering the error (yes, I > >should have posted this first time around) :- > > > > #!/usr/bin/python3 > > > > import mailbox > > import sys > > import email > > > > > > # open the existing maildir and the target mbox file > > maildir = mailbox.Maildir(sys.argv [-2], email.message_from_file) > > Is there some reason you are overriding whatever the default "factory" > is for Maildir? > Only that it was 'as copied' off the blog where I found it. As you can see elsewhere in the thread that was exactly the problem, simply removing the email.message_from_file fixed the error.
-- Chris Green ยท -- https://mail.python.org/mailman/listinfo/python-list
