We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b04d62 commit 23df90bCopy full SHA for 23df90b
IGC/BiFModule/concat.py
@@ -47,6 +47,6 @@ def Usage () :
47
for fname in infilenames:
48
if not os.path.exists(fname):
49
sys.exit("Error: no such file: " + fname)
50
- with open(fname) as infile:
+ with open(fname, "rb") as infile:
51
outfile.write(infile.read())
52
- outfile.write("\0")
+ outfile.write(b"\0")
0 commit comments