From: Christopher Allan Webber Date: Fri, 12 Sep 2014 15:42:23 +0000 (-0500) Subject: Explicitly open READMEFILE as utf-8 X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=9156ab68d0cb251bd47ab832912bfc59156653fc;p=mediagoblin.git Explicitly open READMEFILE as utf-8 --- diff --git a/setup.py b/setup.py index fd089a5a..0c182e98 100644 --- a/setup.py +++ b/setup.py @@ -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: