From 23afabbd0b2325d18b35dbfcd2719c1967e2178a Mon Sep 17 00:00:00 2001 From: Luke Date: Sun, 10 Mar 2019 16:00:50 +0100 Subject: [PATCH] Fix open mode, so it works --- android2po/program.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android2po/program.py b/android2po/program.py index fb7ae55..3e783fc 100644 --- a/android2po/program.py +++ b/android2po/program.py @@ -98,7 +98,7 @@ def read_config(file): else: # Open the config file and read the arguments. filename = file - f = open(file, 'rb') + f = open(file, 'r') try: lines = f.readlines() finally: