Skip to content

Commit

Permalink
fixed curl call
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippMundhenk authored Oct 9, 2024
1 parent a2daf48 commit da283d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def convert_and_post_process(
[
"curl",
"-F",
"userfile=@${output_pdf_file}",
"userfile=@"+output_pdf_file,
"-H",
"Expect:",
"-o",
Expand Down

1 comment on commit da283d4

@pedropombeiro
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@PhilippMundhenk ah this should have been

f"userfile=@{output_pdf_file}",

Please sign in to comment.