setup: fix python3 compilation

This commit is contained in:
Mathieu Virbel 2014-01-29 02:29:10 +01:00
parent 3d6b01a00c
commit 7cf18fa681
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ def pkgconfig(*packages, **kw):
flag = flag_map.get(ext) flag = flag_map.get(ext)
if not flag: if not flag:
continue continue
kw.setdefault(flag, []).append(token[2:]) kw.setdefault(flag, []).append(token[2:].decode('utf-8'))
return kw return kw