Skip to content

Commit

Permalink
Decode README as utf-8.
Browse files Browse the repository at this point in the history
Closes #37
  • Loading branch information
mik3y committed Dec 20, 2019
1 parent 31ed04b commit c2ec67e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import re
import os
import sys
import codecs



Expand All @@ -19,7 +20,7 @@
license = 'BSD'
install_requires = ["django>=1.8"]

with open('README.md') as f:
with codecs.open('README.md', encoding='utf-8') as f:
readme = f.read()


Expand Down

0 comments on commit c2ec67e

Please sign in to comment.