diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2014-09-12 10:42:23 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2014-09-12 10:42:23 -0500 |
commit | 9156ab68d0cb251bd47ab832912bfc59156653fc (patch) | |
tree | ea8200f87498bfa00b236023939b0b3d6c56f5ee /setup.py | |
parent | 99c466045a1e5eb9032f4938729435c5d6a6e1aa (diff) | |
download | mediagoblin-9156ab68d0cb251bd47ab832912bfc59156653fc.tar.lz mediagoblin-9156ab68d0cb251bd47ab832912bfc59156653fc.tar.xz mediagoblin-9156ab68d0cb251bd47ab832912bfc59156653fc.zip |
Explicitly open READMEFILE as utf-8
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -89,7 +89,7 @@ install_requires = [ # 'Pillow', ] + py2_only_install_requires -with open(READMEFILE) as fobj: +with open(READMEFILE, encoding="utf-8") as fobj: long_description = fobj.read() try: |