#15520 closed (fixed)
Regression introduced by mail functionality changes from r15669
Reported by: | Ramiro Morales | Owned by: | nobody |
---|---|---|---|
Component: | Core (Mail) | Version: | dev |
Severity: | Keywords: | blocker | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
User dobcey reports that r15669 breaks in Python 2.4. Quoting from his comment:
In 2.4:
from email.generator import Generator
have to be:
from email.Generator import Generator
in order to work. Ie Generator with a capital G.
The problem seems to be that all modules have been renamed according to PEP 8 standards in version 4 of the mail package in Python, as stated here: http://docs.python.org/library/email.html#package-history although it says to be compatible with Python 2.3 to 2.5.
Note:
See TracTickets
for help on using tickets.
In [15675]: