From a8fd7512f750ee9023750217787566d25038925e Mon Sep 17 00:00:00 2001 From: William Deegan Date: Fri, 10 Mar 2017 23:44:50 -0500 Subject: remove rb/wb from file opens, not needed py2/3. --- test/Rpcgen/RPCGENHEADERFLAGS.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Rpcgen/RPCGENHEADERFLAGS.py b/test/Rpcgen/RPCGENHEADERFLAGS.py index 0c93fe7..f65da8e 100644 --- a/test/Rpcgen/RPCGENHEADERFLAGS.py +++ b/test/Rpcgen/RPCGENHEADERFLAGS.py @@ -38,10 +38,10 @@ import getopt import sys cmd_opts, args = getopt.getopt(sys.argv[1:], 'chlmo:x', []) for opt, arg in cmd_opts: - if opt == '-o': output = open(arg, 'wb') + if opt == '-o': output = open(arg, 'w') output.write(" ".join(sys.argv) + "\\n") for a in args: - contents = open(a, 'rb').read() + contents = open(a, 'r').read() output.write(contents.replace('RPCGEN', 'myrpcgen.py')) output.close() sys.exit(0) -- cgit v0.12