myint / language-check

Python wrapper for LanguageTool grammar checker
https://pypi.python.org/pypi/language-check
GNU Lesser General Public License v3.0
327 stars 101 forks source link

Force str for setuptools package_data key #37

Closed jayvdb closed 7 years ago

jayvdb commented 7 years ago

When configparser backport is installed on Python 2, the RawConfigParser uses unicode keys, which setuptools rejects when they are copied into the package_data dict.

Fixes https://github.com/myint/language-check/issues/30

myint commented 7 years ago

Nice detective work!