diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-06-11 16:25:44 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-06-11 16:22:46 -0400 |
commit | fa8071a0985700a4641ce77dac2cb2fa285d3afe (patch) | |
tree | dabbbee569c19b2196ad51ee734ad1b823e0899c /test/functional/combine_logs.py | |
parent | 3d3d8ae3a0a93621044ab0b889bad082cc91d016 (diff) |
qa: Log as utf-8
Diffstat (limited to 'test/functional/combine_logs.py')
-rwxr-xr-x | test/functional/combine_logs.py | 2 |
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: |