projects
/
mediagoblin.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
99c4660
)
Explicitly open READMEFILE as utf-8
author
Christopher Allan Webber
<cwebber@dustycloud.org>
Fri, 12 Sep 2014 15:42:23 +0000
(10:42 -0500)
committer
Christopher Allan Webber
<cwebber@dustycloud.org>
Fri, 12 Sep 2014 15:42:23 +0000
(10:42 -0500)
setup.py
patch
|
blob
|
blame
|
history
diff --git
a/setup.py
b/setup.py
index fd089a5a69137c71ed247b2b3d076d20814474dc..0c182e98f11e637d2fa9ea7dc9344bcdc25e7576 100644
(file)
--- 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: