Skip to content

Commit 96800d7

Browse files
author
Kazuki Suzuki Przyborowski
committed
Update pycatfile.py
1 parent 1f4dd01 commit 96800d7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pycatfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4963,7 +4963,7 @@ def PackArchiveFileFromDirList(infiles, outfile, dirlistfromtxt=False, fmttype="
49634963

49644964

49654965
def PackArchiveFileFromTarFile(infile, outfile, fmttype="auto", compression="auto", compresswholefile=True, compressionlevel=None, compressionuselist=compressionlistalt, checksumtype=["crc32", "crc32", "crc32"], extradata=[], formatspecs=__file_format_dict__, verbose=False, returnfp=False):
4966-
if(IsNestedDict(formatspecs) and fmttype=="auto" and
4966+
if(IsNestedDict(formatspecs) and fmttype=="auto" and
49674967
(outfile != "-" and outfile is not None and not hasattr(outfile, "read") and not hasattr(outfile, "write"))):
49684968
get_in_ext = os.path.splitext(outfile)
49694969
tmpfmt = GetKeyByFormatExtension(get_in_ext[1], formatspecs=__file_format_multi_dict__)
@@ -5254,7 +5254,7 @@ def PackArchiveFileFromTarFile(infile, outfile, fmttype="auto", compression="aut
52545254

52555255

52565256
def PackArchiveFileFromZipFile(infile, outfile, fmttype="auto", compression="auto", compresswholefile=True, compressionlevel=None, compressionuselist=compressionlistalt, checksumtype=["crc32", "crc32", "crc32"], extradata=[], formatspecs=__file_format_dict__, verbose=False, returnfp=False):
5257-
if(IsNestedDict(formatspecs) and fmttype=="auto" and
5257+
if(IsNestedDict(formatspecs) and fmttype=="auto" and
52585258
(outfile != "-" and outfile is not None and not hasattr(outfile, "read") and not hasattr(outfile, "write"))):
52595259
get_in_ext = os.path.splitext(outfile)
52605260
tmpfmt = GetKeyByFormatExtension(get_in_ext[1], formatspecs=__file_format_multi_dict__)

0 commit comments

Comments
 (0)