[asan] Tweak gen_dynamic_list.py to work with both Py2 and Py3.

llvm-svn: 249051
This commit is contained in:
Evgeniy Stepanov 2015-10-01 18:27:28 +00:00
parent 03c48b01bf
commit 74697714c2
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ def main(argv):
print('global:')
result.sort()
for f in result:
print(' ' + f.encode('utf-8') + ';')
print(u' %s;' % f)
if args.version_list:
print('local:')
print(' *;')