Repository: incubator-airflow
Updated Branches:
  refs/heads/master 604ea1dcc -> 8c441a0d8


[AIRFLOW-2765] Set default mime_charset to UTF-8

Closes #3627 from jeffkpayne/AIRFLOW-2765


Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/8c441a0d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/8c441a0d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/8c441a0d

Branch: refs/heads/master
Commit: 8c441a0d88627fb97b465c5045bdcad24f1d305c
Parents: 604ea1d
Author: Jeffrey Scott Keone Payne <jpa...@bombora.com>
Authored: Thu Jul 26 20:52:21 2018 +0200
Committer: Bolke de Bruin <bo...@xs4all.nl>
Committed: Thu Jul 26 20:52:21 2018 +0200

----------------------------------------------------------------------
 airflow/operators/email_operator.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/8c441a0d/airflow/operators/email_operator.py
----------------------------------------------------------------------
diff --git a/airflow/operators/email_operator.py 
b/airflow/operators/email_operator.py
index ae176ca..7b4109c 100644
--- a/airflow/operators/email_operator.py
+++ b/airflow/operators/email_operator.py
@@ -60,7 +60,7 @@ class EmailOperator(BaseOperator):
             cc=None,
             bcc=None,
             mime_subtype='mixed',
-            mime_charset='us_ascii',
+            mime_charset='utf-8',
             *args, **kwargs):
         super(EmailOperator, self).__init__(*args, **kwargs)
         self.to = to

Reply via email to