Skip to content

Commit

Permalink
inspect-binexport: strip strings
Browse files Browse the repository at this point in the history
  • Loading branch information
williballenthin committed Apr 8, 2024
1 parent cd62b87 commit 14ff189
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/inspect-binexport2.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def main(argv=None):
string_reference = be2.string_reference[string_reference_index]
string_index = string_reference.string_table_index
string = be2.string_table[string_index]
string_references += f'⇥ string "{string}" '
string_references += f'⇥ string "{string.rstrip()}" '

comments = ""
if instruction.comment_index:
Expand Down

0 comments on commit 14ff189

Please sign in to comment.