Skip to content
This repository has been archived by the owner on May 21, 2019. It is now read-only.

Commit

Permalink
[asan] Tweak gen_dynamic_list.py to work with both Py2 and Py3.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@249051 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
eugenis committed Oct 1, 2015
1 parent 03b1893 commit 64568da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/sanitizer_common/scripts/gen_dynamic_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(' *;')
Expand Down

0 comments on commit 64568da

Please sign in to comment.