aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2014-09-12 10:42:23 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2014-09-12 10:42:23 -0500
commit9156ab68d0cb251bd47ab832912bfc59156653fc (patch)
treeea8200f87498bfa00b236023939b0b3d6c56f5ee /setup.py
parent99c466045a1e5eb9032f4938729435c5d6a6e1aa (diff)
downloadmediagoblin-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.py2
1 files changed, 1 insertions, 1 deletions
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: