Skip to content

Commit

Permalink
Fix missing decode
Browse files Browse the repository at this point in the history
  • Loading branch information
dhinakg committed Aug 18, 2024
1 parent 0680c2f commit d485beb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion get_key.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def main(aea_path: Path, verbose: bool = False):

key, value = field_blob[4:].split(b"\x00", 1)

fields[key] = value
fields[key.decode()] = value.decode()

auth_data_blob = auth_data_blob[field_size:]

Expand Down

0 comments on commit d485beb

Please sign in to comment.