carpedm20 / korail2

Korail (www.letskorail.com) wrapper for Python.
http://carpedm20.github.io/korail2/
Other
168 stars 54 forks source link

readme.rst encoding #12

Closed sng2c closed 10 years ago

sng2c commented 10 years ago

https://github.com/carpedm20/korail2/blob/master/setup.py#L44

On windows, the file object try to use CP949 codec. So decoding error issued on line 44 of setup.py

fix with using below code.

import codecs
with codecs.open(file name,'r',encoding='utf8') as f:
    text = f.read()
carpedm20 commented 10 years ago

fixed 88b2dfb2dea8519fc04ced4f4f785cc737177016

sng2c commented 10 years ago

Support python3