@@ -2859,7 +2859,7 @@ def ReadInMultipleFileWithContentToArray(infile, fmttype="auto", seekstart=0, se
28592859 infile = [infile ]
28602860 outretval = {}
28612861 for curfname in infile :
2862- curretfile = outretval .update ({curfname : ArchiveFileToArray (curfname , fmttype , seekstart , seekend , listonly , contentasfile , uncompress , skipchecksum , formatspecs )})
2862+ curretfile = outretval .update ({curfname : ReadInFileWithContentToArray (curfname , fmttype , seekstart , seekend , listonly , contentasfile , uncompress , skipchecksum , formatspecs )})
28632863 return outretval
28642864
28652865def ReadInMultipleFilesWithContentToArray (infile , fmttype = "auto" , seekstart = 0 , seekend = 0 , listonly = False , contentasfile = True , uncompress = True , skipchecksum = False , formatspecs = __file_format_multi_dict__ ):
@@ -3047,7 +3047,7 @@ def ReadInMultipleFileWithContentToList(infile, fmttype="auto", seekstart=0, see
30473047 infile = [infile ]
30483048 outretval = {}
30493049 for curfname in infile :
3050- curretfile = outretval .update ({curfname : ArchiveFileToList (curfname , fmttype , seekstart , seekend , listonly , contentasfile , uncompress , skipchecksum , formatspecs )})
3050+ curretfile = outretval .update ({curfname : ReadInFileWithContentToList (curfname , fmttype , seekstart , seekend , listonly , contentasfile , uncompress , skipchecksum , formatspecs )})
30513051 return outretval
30523052
30533053def ReadInMultipleFilesWithContentToList (infile , fmttype = "auto" , seekstart = 0 , seekend = 0 , listonly = False , contentasfile = True , uncompress = True , skipchecksum = False , formatspecs = __file_format_multi_dict__ ):
0 commit comments