Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
terriko committed Jul 28, 2021
1 parent ceae972 commit 8ba7e43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cve_bin_tool/extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ async def extract_file_zip(filename, extraction_path, process_can_fail=True):
"""Extract zip files"""
if await aio_inpath("unzip"):
stdout, stderr, _ = await aio_run_command(
["unzip", "-n", "-d", extraction_path, filename], proccess_can_fail
["unzip", "-n", "-d", extraction_path, filename], process_can_fail
)
if stderr or not stdout:
self.logger.warning()
Expand Down

0 comments on commit 8ba7e43

Please sign in to comment.