From 5ec985af9be8a44f66767ac03b6b944d738e773f Mon Sep 17 00:00:00 2001 From: Garret Wassermann Date: Mon, 3 Apr 2017 02:34:54 -0400 Subject: [PATCH] Add explicit encoding hint to top of file to allow Python 2 to read file with Unicode characters, in accordance with PEP-263 --- helpdesk/tests/test_get_email.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/helpdesk/tests/test_get_email.py b/helpdesk/tests/test_get_email.py index bcaf1001..6ff275a3 100644 --- a/helpdesk/tests/test_get_email.py +++ b/helpdesk/tests/test_get_email.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + from __future__ import unicode_literals from helpdesk.models import Queue, Ticket, FollowUp, Attachment