mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
merge bitcoin#27280: Fix TypeError (expected str instance, bytes found) in wait_for_debug_log
This commit is contained in:
parent
ecb16808a6
commit
f09752cac1
@ -468,7 +468,7 @@ class TestNode():
|
|||||||
return
|
return
|
||||||
|
|
||||||
if time.time() >= time_end:
|
if time.time() >= time_end:
|
||||||
print_log = " - " + "\n - ".join(log.splitlines())
|
print_log = " - " + "\n - ".join(log.decode("utf8", errors="replace").splitlines())
|
||||||
break
|
break
|
||||||
|
|
||||||
# No sleep here because we want to detect the message fragment as fast as
|
# No sleep here because we want to detect the message fragment as fast as
|
||||||
|
Loading…
Reference in New Issue
Block a user