Issue 1399 - invalid cast in syms.py

This commit is contained in:
Thomas Nagy 2014-01-23 21:19:57 +01:00
parent d2f265c8c7
commit cb98fcf6cc
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 = dict(syms.keys())
lsyms = list(syms.keys())
lsyms.sort()
if self.env.DEST_BINFMT == 'pe':
self.outputs[0].write('EXPORTS\n' + '\n'.join(lsyms))