Merge: #21079: is_attachment now looks only at the value, ignoring parameters.

This commit is contained in:
R David Murray 2014-09-20 17:49:48 -04:00
commit 1de0ac05f3
3 changed files with 6 additions and 4 deletions

View file

@ -941,9 +941,7 @@ class MIMEPart(Message):
@property
def is_attachment(self):
c_d = self.get('content-disposition')
if c_d is None:
return False
return c_d.lower() == 'attachment'
return False if c_d is None else c_d.content_disposition == 'attachment'
def _find_body(self, part, preferencelist):
if part.is_attachment: