Fix open(,encoding=) under python2

Use open in io for encoding under python2
This commit is contained in:
Jiachen Yang 2016-12-19 19:00:20 +09:00
commit 7a026f548c
No known key found for this signature in database
GPG key ID: 90CB3D62C13D4796

View file

@ -1,6 +1,7 @@
#!/usr/bin/env python
from os import walk
from os.path import join, relpath
from io import open
from setuptools import setup