Skip to content

Commit f4aa520

Browse files
authored
Add files via upload
1 parent 1a4ea03 commit f4aa520

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

pyfoxfile.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3314,7 +3314,7 @@ def ReadInMultipleStackedFileWithContentToArray(infile, fmttype="auto", filestar
33143314
infile = [infile]
33153315
outretval = {}
33163316
for curfname in infile:
3317-
curretfile[curfname] = ReadInStackedFileWithContentToArray(curfname, fmttype, filestart, seekstart, seekend, listonly, contentasfile, uncompress, skipchecksum, formatspecs, seektoend)
3317+
outretval[curfname] = ReadInStackedFileWithContentToArray(curfname, fmttype, filestart, seekstart, seekend, listonly, contentasfile, uncompress, skipchecksum, formatspecs, seektoend)
33183318
return outretval
33193319

33203320
def ReadInMultipleStackedFilesWithContentToArray(infile, fmttype="auto", filestart=0, seekstart=0, seekend=0, listonly=False, contentasfile=True, uncompress=True, skipchecksum=False, formatspecs=__file_format_multi_dict__, seektoend=False):
@@ -3502,7 +3502,7 @@ def ReadInMultipleFileWithContentToList(infile, fmttype="auto", filestart=0, see
35023502
infile = [infile]
35033503
outretval = {}
35043504
for curfname in infile:
3505-
curretfile[curfname] = ReadInFileWithContentToList(curfname, fmttype, filestart, seekstart, seekend, listonly, contentasfile, uncompress, skipchecksum, formatspecs, seektoend)
3505+
outretval[curfname] = ReadInFileWithContentToList(curfname, fmttype, filestart, seekstart, seekend, listonly, contentasfile, uncompress, skipchecksum, formatspecs, seektoend)
35063506
return outretval
35073507

35083508
def ReadInMultipleFilesWithContentToList(infile, fmttype="auto", filestart=0, seekstart=0, seekend=0, listonly=False, contentasfile=True, uncompress=True, skipchecksum=False, formatspecs=__file_format_multi_dict__, seektoend=False):
@@ -7547,7 +7547,7 @@ def MultipleFoxFileToArray(infile, fmttype="auto", filestart=0, seekstart=0, see
75477547
infile = [infile]
75487548
outretval = {}
75497549
for curfname in infile:
7550-
curretfile[curfname] = FoxFileToArray(curfname, fmttype, filestart, seekstart, seekend, listonly, contentasfile, uncompress, skipchecksum, formatspecs, seektoend, returnfp)
7550+
outretval[curfname] = FoxFileToArray(curfname, fmttype, filestart, seekstart, seekend, listonly, contentasfile, uncompress, skipchecksum, formatspecs, seektoend, returnfp)
75517551
return outretval
75527552

75537553
def MultipleFoxFilesToArray(infile, fmttype="auto", filestart=0, seekstart=0, seekend=0, listonly=False, contentasfile=True, uncompress=True, skipchecksum=False, formatspecs=__file_format_multi_dict__, seektoend=False, returnfp=False):
@@ -7574,7 +7574,7 @@ def MultipleStackedFoxFileToArray(infile, fmttype="auto", filestart=0, seekstart
75747574
infile = [infile]
75757575
outretval = {}
75767576
for curfname in infile:
7577-
curretfile[curfname] = StackedFoxFileToArray(curfname, fmttype, filestart, seekstart, seekend, listonly, contentasfile, uncompress, skipchecksum, formatspecs, seektoend, returnfp)
7577+
outretval[curfname] = StackedFoxFileToArray(curfname, fmttype, filestart, seekstart, seekend, listonly, contentasfile, uncompress, skipchecksum, formatspecs, seektoend, returnfp)
75787578
return outretval
75797579

75807580
def MultipleStackedFoxFilesToArray(infile, fmttype="auto", filestart=0, seekstart=0, seekend=0, listonly=False, contentasfile=True, uncompress=True, skipchecksum=False, formatspecs=__file_format_multi_dict__, seektoend=False, returnfp=False):

0 commit comments

Comments
 (0)