Bugfix for 5146 and 5106 - ImportProGen fails on Windows because some files
must be read as "binary". svn: r18056
This commit is contained in:
parent
abaf5cd4f6
commit
d04efcfb7e
@ -110,7 +110,7 @@ def _read_mem(bname):
|
||||
fname = bname + '.MEM'
|
||||
else:
|
||||
fname = bname + '.mem'
|
||||
f = open(fname)
|
||||
f = open(fname, "rb")
|
||||
recfmt = "i28s"
|
||||
reclen = struct.calcsize( recfmt )
|
||||
#print "# reclen = %d" % reclen
|
||||
@ -131,7 +131,7 @@ def _read_recs(table, bname):
|
||||
fname = bname + table.fileext
|
||||
else:
|
||||
fname = bname + table.fileext.lower()
|
||||
f = open(fname)
|
||||
f = open(fname, "rb")
|
||||
recfmt = table.recfmt
|
||||
log.info("# %s - recfmt = %s" % (table['name1'], recfmt))
|
||||
reclen = struct.calcsize( recfmt )
|
||||
|
Loading…
Reference in New Issue
Block a user