hopefully fix encoding for emails sent by bz-review-report.py
This commit is contained in:
parent
c51891fd6b
commit
57d12aa9b6
1 changed files with 1 additions and 1 deletions
|
@ -421,7 +421,7 @@ if __name__ == '__main__':
|
||||||
from email.mime.text import MIMEText
|
from email.mime.text import MIMEText
|
||||||
|
|
||||||
file = open(output_path, "r")
|
file = open(output_path, "r")
|
||||||
msg = MIMEText(file.read())
|
msg = MIMEText(file.read(), _charset="utf-8")
|
||||||
file.close()
|
file.close()
|
||||||
|
|
||||||
subject = "Reviews Weekly"
|
subject = "Reviews Weekly"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue