New submission from Vitold S:

I have MIME message and parse content. Later I walk on message headers by call 
for and receive follow traceback:

Traceback (most recent call last):
...
    for m in msg:  (msg is email.message.Message instance)
  File "C:\Python27\lib\email\message.py", line 294, in __getitem__
    return self.get(name)
  File "C:\Python27\lib\email\message.py", line 360, in get
    name = name.lower()
AttributeError: 'int' object has no attribute 'lower'

But with items() all work properly.

----------
components: email
messages: 282454
nosy: Vitold S, barry, r.david.murray
priority: normal
severity: normal
status: open
title: int no attribute 'lower'
versions: Python 2.7

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue28881>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to