From 75308d7a306a0201b110a3a8510253ba7927de66 Mon Sep 17 00:00:00 2001 From: ShyRed Date: Fri, 16 Mar 2018 16:28:05 +0100 Subject: [PATCH] Open textfile in textmode Open mapping files in textmode as they are textfiles. --- main/SCsub | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/SCsub b/main/SCsub index dd16437d5c4..9eddc4f5b62 100644 --- a/main/SCsub +++ b/main/SCsub @@ -74,7 +74,7 @@ def make_default_controller_mappings(target, source, env): platform_mappings = OrderedDict() for src in source: src_path = src.srcnode().abspath - with open(src_path, "rb") as f: + with open(src_path, "r") as f: # read mapping file and skip header mapping_file_lines = f.readlines()[2:]