Skip to content

Commit b14400c

Browse files
authored
Merge pull request #143 from DavidRamosArchilla/fix-avl-command-execution
Fixed problem with AVL execution #142
2 parents 2906fcc + ba41b56 commit b14400c

File tree

1 file changed

+1
-1
lines changed
  • aerosandbox/aerodynamics/aero_3D

1 file changed

+1
-1
lines changed

aerosandbox/aerodynamics/aero_3D/avl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ def run(
244244

245245
keystrokes = "\n".join(keystroke_file_contents)
246246

247-
command = f"{self.avl_command} {airplane_file}"
247+
command = [self.avl_command, airplane_file]
248248

249249
### Execute
250250
try:

0 commit comments

Comments
 (0)