diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2014-09-12 12:29:12 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2014-09-12 12:30:09 -0500 |
commit | 0c32c7fe8338d2689d7afafa5164f03fa440bd47 (patch) | |
tree | c85adf7498cac9734813b91a855f60cc11979555 /setup.py | |
parent | 9156ab68d0cb251bd47ab832912bfc59156653fc (diff) | |
download | mediagoblin-0c32c7fe8338d2689d7afafa5164f03fa440bd47.tar.lz mediagoblin-0c32c7fe8338d2689d7afafa5164f03fa440bd47.tar.xz mediagoblin-0c32c7fe8338d2689d7afafa5164f03fa440bd47.zip |
py2.7 compatibility with open(..., encoding="utf-8"), use io.open
This commit sponsored by Peter Baumgarten. Thank you!
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -17,6 +17,7 @@ from __future__ import print_function from setuptools import setup, find_packages +from io import open import os import re |