[perimeterPen] move source encoding declaration to the first line

Otherwise I get this error on python2.7:

SyntaxError: Non-ASCII character '\xc2' in file perimeterPen.py on line 87, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
This commit is contained in:
Cosimo Lupo 2017-02-19 20:08:57 -08:00
parent 3e74798499
commit a226c4772b
No known key found for this signature in database
GPG Key ID: B61AAAD0B53A6419

View File

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
"""Calculate the perimeter of a glyph."""
# -*- coding: utf-8-*-
from __future__ import print_function, division, absolute_import
from fontTools.misc.py23 import *