From 73edede929f26c677a62309ad90605f86ecb492d Mon Sep 17 00:00:00 2001 From: ralfulrich <ralf.ulrich@kit.edu> Date: Mon, 20 May 2019 22:45:16 +0200 Subject: [PATCH] consider utf8 --- do-copyright.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/do-copyright.py b/do-copyright.py index 4c86e24aa..318f77841 100755 --- a/do-copyright.py +++ b/do-copyright.py @@ -46,7 +46,7 @@ def checkNote(filename): # read input file into lines lines = [] - with open(filename, "r") as file: + with open(filename, "r", encoding="utf-8") as file: for line in file.readlines(): lines.append(line) file.close() -- GitLab