Skip to content

Commit 3132cda

Browse files
luelistanslav-at-attachix
authored andcommitted
fix python3 compatibility problem in decode-stacktrace
1 parent 456df27 commit 3132cda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/decode-stacktrace.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@ def extractAddresses(data):
4747
line = "\r\n".join(addresses)+"\r\n"
4848
# line = line.ljust(125," ")
4949

50-
pipe.stdin.write(line)
50+
pipe.stdin.write(line.encode('ascii'))
5151
pipe.stdin.flush()
5252

0 commit comments

Comments
 (0)