mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-03-24 22:45:41 +01:00
qa: Log as utf-8
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user