remove dangling whitespace in wram.py

This commit is contained in:
Bryan Bishop
2013-08-03 12:25:25 -05:00
parent 7ee0269e23
commit 9dc552e46c

View File

@@ -15,7 +15,7 @@ def read_bss_sections(bss):
line = line.lstrip()
if 'SECTION' in line:
if section: sections.append(section) # last section
address = eval(line[line.find('[')+1:line.find(']')].replace('$','0x'))
section = {
'name': line.split('"')[1],