Issue 1361, syms.py and python3

This commit is contained in:
Thomas Nagy 2013-09-30 17:55:42 +02:00
parent 90b491e834
commit 455e22838a
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ class compile_sym(Task):
slist = eval(x.read())
for s in slist:
syms[s] = 1
lsyms = syms.keys()
lsyms = dict(syms.keys())
lsyms.sort()
if self.env.DEST_BINFMT == 'pe':
self.outputs[0].write('EXPORTS\n' + '\n'.join(lsyms))