Skip to content

Commit 8067e8b

Browse files
authored
Add files via upload
1 parent 41c8696 commit 8067e8b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pyarchivefile.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3302,7 +3302,7 @@ def ReadInMultipleStackedFileWithContentToArray(infile, fmttype="auto", filestar
33023302
infile = [infile]
33033303
outretval = {}
33043304
for curfname in infile:
3305-
curretfile[curfname] = ReadInStackedFileWithContentToArray(curfname, fmttype, filestart, seekstart, seekend, listonly, contentasfile, uncompress, skipchecksum, formatspecs, seektoend)
3305+
outretval[curfname] = ReadInStackedFileWithContentToArray(curfname, fmttype, filestart, seekstart, seekend, listonly, contentasfile, uncompress, skipchecksum, formatspecs, seektoend)
33063306
return outretval
33073307

33083308
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):
@@ -3490,7 +3490,7 @@ def ReadInMultipleFileWithContentToList(infile, fmttype="auto", filestart=0, see
34903490
infile = [infile]
34913491
outretval = {}
34923492
for curfname in infile:
3493-
curretfile[curfname] = ReadInFileWithContentToList(curfname, fmttype, filestart, seekstart, seekend, listonly, contentasfile, uncompress, skipchecksum, formatspecs, seektoend)
3493+
outretval[curfname] = ReadInFileWithContentToList(curfname, fmttype, filestart, seekstart, seekend, listonly, contentasfile, uncompress, skipchecksum, formatspecs, seektoend)
34943494
return outretval
34953495

34963496
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):
@@ -7535,7 +7535,7 @@ def MultipleArchiveFileToArray(infile, fmttype="auto", filestart=0, seekstart=0,
75357535
infile = [infile]
75367536
outretval = {}
75377537
for curfname in infile:
7538-
curretfile[curfname] = ArchiveFileToArray(curfname, fmttype, filestart, seekstart, seekend, listonly, contentasfile, uncompress, skipchecksum, formatspecs, seektoend, returnfp)
7538+
outretval[curfname] = ArchiveFileToArray(curfname, fmttype, filestart, seekstart, seekend, listonly, contentasfile, uncompress, skipchecksum, formatspecs, seektoend, returnfp)
75397539
return outretval
75407540

75417541
def MultipleArchiveFilesToArray(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):
@@ -7562,7 +7562,7 @@ def MultipleStackedArchiveFileToArray(infile, fmttype="auto", filestart=0, seeks
75627562
infile = [infile]
75637563
outretval = {}
75647564
for curfname in infile:
7565-
curretfile[curfname] = StackedArchiveFileToArray(curfname, fmttype, filestart, seekstart, seekend, listonly, contentasfile, uncompress, skipchecksum, formatspecs, seektoend, returnfp)
7565+
outretval[curfname] = StackedArchiveFileToArray(curfname, fmttype, filestart, seekstart, seekend, listonly, contentasfile, uncompress, skipchecksum, formatspecs, seektoend, returnfp)
75667566
return outretval
75677567

75687568
def MultipleStackedArchiveFilesToArray(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)