Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ pybdy -v
Resulting in a help usage prompt:

```
usage: pybdy -g -s <namelist.bdy>
usage: pybdy -s <namelist.bdy>
```

To use pyBDY, the following command is entered: (the example will run
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ pybdy -v
If it has you should see the help usage prompt:

```
usage: pybdy -g -s <namelist.bdy>
usage: pybdy -s <namelist.bdy>
```

If not please see the troubleshooting pages for common causes as
Expand Down
2 changes: 1 addition & 1 deletion src/pybdy/pybdy_exe.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def main():
sys.argv[1:], "hs:g", ["help", "setup=", "mask_gui"]
)
except getopt.GetoptError:
print("usage: pybdy -g -s <namelist.bdy> ")
print("usage: pybdy -s <namelist.bdy> ")
sys.exit(2)

for opt, arg in opts:
Expand Down
Loading