Changeset 4426

Show
Ignore:
Timestamp:
10/08/08 15:02:18 (1 month ago)
Author:
doki_pen
Message:

fixes charset defect #3870. Thank you spcamp!

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • announcerplugin/0.11/announcerplugin/distributors/email_distributor.py

    r4240 r4426  
    264264         
    265265        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)
    267267            parentMessage.attach(msgText) 
    268268         
    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)
    270270        parentMessage.attach(msgText) 
    271271