Add explicit encoding hint to top of file to allow Python 2 to read file with Unicode characters, in accordance with PEP-263

This commit is contained in:
Garret Wassermann 2017-04-03 02:34:54 -04:00
parent 0fb9094d01
commit 5ec985af9b

View File

@ -1,3 +1,5 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from helpdesk.models import Queue, Ticket, FollowUp, Attachment