summaryrefslogtreecommitdiffstats
path: root/Lib/email/Iterators.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/email/Iterators.py')
-rw-r--r--Lib/email/Iterators.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/email/Iterators.py b/Lib/email/Iterators.py
index d1ee53f..cd08f37 100644
--- a/Lib/email/Iterators.py
+++ b/Lib/email/Iterators.py
@@ -9,7 +9,7 @@ from cStringIO import StringIO
from types import StringType
-
+
def body_line_iterator(msg):
"""Iterate over the parts, returning string payloads line-by-line."""
for subpart in msg.walk():
@@ -19,7 +19,7 @@ def body_line_iterator(msg):
yield line
-
+
def typed_subpart_iterator(msg, maintype='text', subtype=None):
"""Iterate over the subparts with a given MIME type.