Skip to content

Commit

Permalink
Fix UnicodeDecodeError in Processing history
Browse files Browse the repository at this point in the history
  • Loading branch information
agiudiceandrea authored and nyalldawson committed Jun 23, 2021
1 parent 168a095 commit 8cb7fa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/core/ProcessingLog.py
Expand Up @@ -64,7 +64,7 @@ def addToLog(msg):
def getLogEntries():
entries = []

with open(ProcessingLog.logFilename()) as f:
with open(ProcessingLog.logFilename(), encoding='utf-8') as f:
lines = f.readlines()
for line in lines:
line = line.strip('\n').strip()
Expand Down

0 comments on commit 8cb7fa0

Please sign in to comment.