Skip to content

Commit

Permalink
Avoid converting serialized graph assembly to str (#529)
Browse files Browse the repository at this point in the history
  • Loading branch information
nirizr committed Nov 10, 2018
1 parent 3108fa9 commit e691dbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion idaplugin/rematch/dialogs/serializedgraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def OnRefresh(self): # noqa: N802
local_ids = {}
for node in self.nodes:
node_text = "\n".join(node['assembly'])
local_id = self.AddNode((str(node_text), 0xffffff))
local_id = self.AddNode((node_text, 0xffffff))
local_ids[node['id']] = local_id

for node in self.nodes:
Expand Down

0 comments on commit e691dbf

Please sign in to comment.