Fix setup.py so that bdist_wininst works.
Leaving the maintainer's name as a string (as opposed to a unicode) was triggering a UnicodeDecodeError when running bdist_wininst with Python 2.7.3
This commit is contained in:
parent
ed66578029
commit
67f68d2234
2
setup.py
2
setup.py
@ -171,7 +171,7 @@ setup(name='pygit2',
|
||||
url='http://github.com/libgit2/pygit2',
|
||||
classifiers=classifiers,
|
||||
license='GPLv2',
|
||||
maintainer='J. David Ibáñez',
|
||||
maintainer=u'J. David Ibáñez',
|
||||
maintainer_email='jdavid.ibp@gmail.com',
|
||||
long_description=long_description,
|
||||
packages = ['pygit2'],
|
||||
|
Loading…
x
Reference in New Issue
Block a user