Mercurial > p > roundup > code
diff detectors/emailauditor.py @ 3345:81cb4860ca75
fix nameerror. backport candidate
| author | Anthony Baxter <anthonybaxter@users.sourceforge.net> |
|---|---|
| date | Wed, 08 Jun 2005 03:37:37 +0000 |
| parents | a6588f4b841a |
| children |
line wrap: on
line diff
--- a/detectors/emailauditor.py Wed Jun 08 03:35:18 2005 +0000 +++ b/detectors/emailauditor.py Wed Jun 08 03:37:37 2005 +0000 @@ -28,7 +28,7 @@ name extension. So... we do that. :)''' - if newalues.get('type', '').lower() == "message/rfc822": + if newvalues.get('type', '').lower() == "message/rfc822": if not newvalues.has_key('name'): newvalues['name'] = 'email.mht' return
