Skip to content

Commit

Permalink
replace subprocess.call with subprocess.run
Browse files Browse the repository at this point in the history
  • Loading branch information
rrsettgast committed Sep 10, 2024
1 parent 72dfd3f commit d2f2594
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@

print("********** Running Doxygen in ReadtheDocs **********")
# Call doxygen
from subprocess import call
call(['doxygen', doxyfile_dst])
from subprocess import run
run(['doxygen', doxyfile_dst])
print("********** Finished Running Doxygen in ReadtheDocs **********")


Expand Down

0 comments on commit d2f2594

Please sign in to comment.