diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2016-02-11 14:49:02 +0100 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2016-04-08 21:50:07 +0200 |
commit | 0d778b1db909c8d096be4e199384fff96a722fc9 (patch) | |
tree | 7925281f0e722c64d634c1b5ac31266f3efee996 | |
parent | 779822d945dc7ebba7062ac9a5e760d21a7f362a (diff) |
lazy extractors: specify the encoding
When building with python3 the unicode characters are not escaped, python2 needs to know the encoding.
-rw-r--r-- | devscripts/lazy_load_template.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/devscripts/lazy_load_template.py b/devscripts/lazy_load_template.py index ae2bd2701..563d629f8 100644 --- a/devscripts/lazy_load_template.py +++ b/devscripts/lazy_load_template.py @@ -1,3 +1,4 @@ +# encoding: utf-8 # flake8: noqa from __future__ import unicode_literals |