Skip to content

Commit

Permalink
Fix the help messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoconni committed May 14, 2023
1 parent 122f69f commit b91e792
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/JSBSim.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
help="specifies to suspend the simulation after initialization")
parser.add_argument("--initfile", metavar="<filename>",
help="specifies an initialization file")
parser.add_argument("--planetfile", metavar="<filename>",
parser.add_argument("--planet", metavar="<filename>",
help="specifies a planet definition file")
parser.add_argument("--catalog", default=False, action="store_true",
help="specifies that all properties for this aircraft model should be printed")
Expand Down
2 changes: 1 addition & 1 deletion src/JSBSim.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@ void PrintHelp(void)
cout << " --nohighlight specifies that console output should be pure text only (no color)" << endl;
cout << " --suspend specifies to suspend the simulation after initialization" << endl;
cout << " --initfile=<filename> specifies an initilization file" << endl;
cout << " --planetfile=<filename> specifies a planet definition file" << endl;
cout << " --planet=<filename> specifies a planet definition file" << endl;
cout << " --catalog specifies that all properties for this aircraft model should be printed" << endl;
cout << " (catalog=aircraftname is an optional format)" << endl;
cout << " --property=<name=value> e.g. --property=simulation/integrator/rate/rotational=1" << endl;
Expand Down

0 comments on commit b91e792

Please # to comment.