diff --git a/Lib/email/Message.py b/Lib/email/Message.py index 84a4e16cc96..491c259920b 100644 --- a/Lib/email/Message.py +++ b/Lib/email/Message.py @@ -10,9 +10,9 @@ from types import ListType, StringType # Intrapackage imports -import Errors -import Utils -import Charset +from email import Errors +from email import Utils +from email import Charset SEMISPACE = '; ' @@ -78,10 +78,10 @@ def as_string(self, unixfrom=0): Optional `unixfrom' when true, means include the Unix From_ envelope header. """ - from Generator import Generator + from email.Generator import Generator fp = StringIO() g = Generator(fp) - g(self, unixfrom=unixfrom) + g.flatten(self, unixfrom=unixfrom) return fp.getvalue() def is_multipart(self):