hopefully fix encoding for emails sent by bz-review-report.py

This commit is contained in:
clime 2016-09-13 10:25:38 +02:00
parent c51891fd6b
commit 57d12aa9b6

View file

@ -421,7 +421,7 @@ if __name__ == '__main__':
from email.mime.text import MIMEText
file = open(output_path, "r")
msg = MIMEText(file.read())
msg = MIMEText(file.read(), _charset="utf-8")
file.close()
subject = "Reviews Weekly"