Skip to content

Commit

Permalink
fixed python 2.7 compatibility issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mmarcos committed Apr 25, 2017
1 parent 15cf26b commit 073c887
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def read_md(f):
from pypandoc import convert
return convert(f, 'rst')
except ImportError:
return open(f, 'r', encoding='utf-8').read()
return open(f, 'r').read()


try:
Expand Down

0 comments on commit 073c887

Please sign in to comment.