Skip to content

Commit

Permalink
Update catfile.py
Browse files Browse the repository at this point in the history
  • Loading branch information
KazukiPrzyborowski committed Dec 23, 2024
1 parent b5a4944 commit 6897484
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions catfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,11 +174,11 @@ def handler(signum, frame):
getargs.level, False, 0, 0, getargs.checksum, getargs.skipchecksum, [], fnamedict, getargs.verbose, False)
else:
tmpout = pycatfile.PackArchiveFileFromInFile(
getargs.input, getargs.output, getargs.compression, getargs.wholefile, getargs.level, getargs.checksum, [], fnamedict, getargs.verbose, False)
input_file, getargs.output, getargs.compression, getargs.wholefile, getargs.level, getargs.checksum, [], fnamedict, getargs.verbose, False)
if(not tmpout):
sys.exit(1)
else:
pycatfile.PackArchiveFile(input_file, getargs.output, getargs.text, getargs.compression,
pycatfile.PackArchiveFile(getargs.input, getargs.output, getargs.text, getargs.compression,
getargs.wholefile, getargs.level, False, getargs.checksum, [], fnamedict, getargs.verbose, False)
elif active_action == 'repack':
if getargs.convert:
Expand Down

0 comments on commit 6897484

Please sign in to comment.