Changeset 4426
- Timestamp:
- 10/08/08 15:02:18 (1 month ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
announcerplugin/0.11/announcerplugin/distributors/email_distributor.py
r4240 r4426 264 264 265 265 if alternate_output: 266 msgText = MIMEText(alternate_output, 'html' in alternate_format and 'html' or 'plain', charset)266 msgText = MIMEText(alternate_output, 'html' in alternate_format and 'html' or 'plain', str(charset)) 267 267 parentMessage.attach(msgText) 268 268 269 msgText = MIMEText(output, 'html' in format and 'html' or 'plain', charset)269 msgText = MIMEText(output, 'html' in format and 'html' or 'plain', str(charset)) 270 270 parentMessage.attach(msgText) 271 271
