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 Mar 4, 2024
1 parent 3812631 commit 8c9cb93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion catfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
argparser.add_argument("-e", "-x", "--extract", action="store_true", help="Perform extraction operation only.");
argparser.add_argument("-format", "--format", default=__file_format_list__[0], help="Specify the format to use");
argparser.add_argument("-delimiter", "--delimiter", default=__file_format_list__[4], help="Specify the format to use");
argparser.add_argument("-formatver", "--formatver", default=__file_format_list__[5], help="Specify the format to use");
argparser.add_argument("-formatver", "--formatver", default=__file_format_list__[5], help="Specify the format version");
argparser.add_argument("-l", "-t", "--list", action="store_true", help="List files included in the concatenated file.");
argparser.add_argument("-r", "--repack", action="store_true", help="Re-concatenate files, fixing checksum errors if any.");
argparser.add_argument("-o", "--output", default=None, help="Specify the name for the extracted concatenated files or the output concatenated file.");
Expand Down
1 change: 1 addition & 0 deletions pycatfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -2050,6 +2050,7 @@ def ArchiveFileToArray(infile, seekstart=0, seekend=0, listonly=False, skipcheck
return False;
catfp.seek(0, 0);
else:
print(infile);
infile = RemoveWindowsPath(infile);
checkcompressfile = CheckCompressionSubType(infile, formatspecs);
if(checkcompressfile=="tarfile"):
Expand Down

0 comments on commit 8c9cb93

Please sign in to comment.