diff mbox series

[committed] PR 91048 Open ~/.mklog in string mode

Message ID CAO9iq9H17dqbBPJ1aJf+SztAKZ5mygaGCaEnCQ8_oSQCfmj+YA@mail.gmail.com
State New
Headers show
Series [committed] PR 91048 Open ~/.mklog in string mode | expand

Commit Message

Janne Blomqvist July 2, 2019, 5:56 a.m. UTC
Hi,

another leftover from the py3 conversion. Committed r272921 as obvious.

2019-07-02  Janne Blomqvist  <jb@gcc.gnu.org>

    PR other/91048
    * mklog (read_user_info): Open ~/.mklog in string mode.
diff mbox series

Patch

Index: mklog
===================================================================
--- mklog    (revision 272920)
+++ mklog    (working copy)
@@ -100,7 +100,7 @@  EMAIL = ...
   mklog_conf = os.path.expanduser('~/.mklog')
   if os.path.exists(mklog_conf):
     attrs = {}
-    f = open(mklog_conf, 'rb')
+    f = open(mklog_conf)
     for s in f:
       if cache.match(r'^\s*([a-zA-Z0-9_]+)\s*=\s*(.*?)\s*$', s):
         attrs[cache.group(1)] = cache.group(2)