aboutsummaryrefslogtreecommitdiff
path: root/test/functional/combine_logs.py
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2018-06-11 16:25:44 -0400
committerMarcoFalke <falke.marco@gmail.com>2018-06-11 16:22:46 -0400
commitfa8071a0985700a4641ce77dac2cb2fa285d3afe (patch)
treedabbbee569c19b2196ad51ee734ad1b823e0899c /test/functional/combine_logs.py
parent3d3d8ae3a0a93621044ab0b889bad082cc91d016 (diff)
downloadbitcoin-fa8071a0985700a4641ce77dac2cb2fa285d3afe.tar.xz
qa: Log as utf-8
Diffstat (limited to 'test/functional/combine_logs.py')
-rwxr-xr-xtest/functional/combine_logs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/combine_logs.py b/test/functional/combine_logs.py
index d1bf9206b2..91b6415a7c 100755
--- a/test/functional/combine_logs.py
+++ b/test/functional/combine_logs.py
@@ -63,7 +63,7 @@ def get_log_events(source, logfile):
Log events may be split over multiple lines. We use the timestamp
regex match as the marker for a new log event."""
try:
- with open(logfile, 'r') as infile:
+ with open(logfile, 'r', encoding='utf-8') as infile:
event = ''
timestamp = ''
for line in infile: