Skip to content

Commit

Permalink
Merge pull request #143 from DavidRamosArchilla/fix-avl-command-execu…
Browse files Browse the repository at this point in the history
…tion

Fixed problem with AVL execution #142
  • Loading branch information
peterdsharpe committed Sep 9, 2024
2 parents 2906fcc + ba41b56 commit b14400c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aerosandbox/aerodynamics/aero_3D/avl.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def run(

keystrokes = "\n".join(keystroke_file_contents)

command = f"{self.avl_command} {airplane_file}"
command = [self.avl_command, airplane_file]

### Execute
try:
Expand Down

0 comments on commit b14400c

Please sign in to comment.