PR comment

This commit is contained in:
Ethan Roseman 2020-11-02 11:08:20 -05:00
parent f88b57873d
commit 134fcbfa44
1 changed files with 1 additions and 1 deletions

View File

@ -21,6 +21,6 @@ for line in symbol_lines:
sys.exit(55)
syms[addr] = line
with open("test.txt", newline="\n", mode="w") as f:
with open(file_path, newline="\n", mode="w") as f:
for addr in sorted(syms):
f.write(syms[addr])