Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
KazukiPrzyborowski authored May 5, 2024
1 parent 9f56c78 commit 9d3d967
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pycatfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -2376,7 +2376,7 @@ def PackArchiveFile(infiles, outfile, dirlistfromtxt=False, compression="auto",
if(checksumtype=="none"):
checksumtype = "";
if(not compression or compression=="catfile" or compression==formatspecs[2]):
compression = None;
compression = "auto";
if(compression not in compressionlist and compression is None):
compression = "auto";
if(verbose):
Expand Down Expand Up @@ -2665,7 +2665,7 @@ def PackArchiveFileFromTarFile(infile, outfile, compression="auto", compressionl
if(checksumtype=="none"):
checksumtype = "";
if(not compression or compression=="catfile" or compression==formatspecs[2]):
compression = None;
compression = "auto";
if(compression not in compressionlist and compression is None):
compression = "auto";
if(verbose):
Expand Down Expand Up @@ -2898,7 +2898,7 @@ def PackArchiveFileFromZipFile(infile, outfile, compression="auto", compressionl
if(checksumtype=="none"):
checksumtype = "";
if(not compression or compression=="catfile" or compression==formatspecs[2]):
compression = None;
compression = "auto";
if(compression not in compressionlist and compression is None):
compression = "auto";
if(verbose):
Expand Down Expand Up @@ -3156,7 +3156,7 @@ def PackArchiveFileFromRarFile(infile, outfile, compression="auto", compressionl
if(checksumtype=="none"):
checksumtype = "";
if(not compression or compression=="catfile" or compression==formatspecs[2]):
compression = None;
compression = "auto";
if(compression not in compressionlist and compression is None):
compression = "auto";
if(verbose):
Expand Down Expand Up @@ -3427,7 +3427,7 @@ def PackArchiveFileFromSevenZipFile(infile, outfile, compression="auto", compres
if(checksumtype=="none"):
checksumtype = "";
if(not compression or compression=="catfile" or compression==formatspecs[2]):
compression = None;
compression = "auto";
if(compression not in compressionlist and compression is None):
compression = "auto";
if(verbose):
Expand Down Expand Up @@ -6001,7 +6001,7 @@ def RePackArchiveFile(infile, outfile, compression="auto", compressionlevel=None
if(checksumtype=="none"):
checksumtype = "";
if(not compression or compression=="catfile" or compression==formatspecs[2]):
compression = None;
compression = "auto";
if(compression not in compressionlist and compression is None):
compression = "auto";
if(verbose):
Expand Down

0 comments on commit 9d3d967

Please sign in to comment.