Skip to content

Commit

Permalink
expect - do actually write the output on python3...
Browse files Browse the repository at this point in the history
  • Loading branch information
tomato42 committed Aug 3, 2023
1 parent 451d0e0 commit 12999f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tlsfuzzer/expect.py
Original file line number Diff line number Diff line change
Expand Up @@ -1946,7 +1946,7 @@ def process(self, state, msg):
"expected: {1}".format(len(data), self.size))
if self.output:
self.output.write("ExpectApplicationData received payload:\n")
self.output.write(data)
self.output.write(repr(data))
self.output.write("ExpectApplicationData end of payload.\n")


Expand Down

0 comments on commit 12999f2

Please sign in to comment.