diff options
author | Savannah Ostrowski <savannahostrowski@gmail.com> | 2024-09-13 06:14:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-13 06:14:52 (GMT) |
commit | e5b0185e43c972ce98decd1493cd0b0c3a6b166b (patch) | |
tree | cc3e2338e97e9806a8cbc6594bfb72307aec2b9f | |
parent | f5548834256414c6a721e9ebfa511e043e73ef03 (diff) | |
download | cpython-e5b0185e43c972ce98decd1493cd0b0c3a6b166b.zip cpython-e5b0185e43c972ce98decd1493cd0b0c3a6b166b.tar.gz cpython-e5b0185e43c972ce98decd1493cd0b0c3a6b166b.tar.bz2 |
GH-101599: Update docs to remove redundant option in argparse tutorial (#124025)
-rw-r--r-- | Doc/howto/argparse.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/argparse.rst b/Doc/howto/argparse.rst index ae5bab9..30d9ac7 100644 --- a/Doc/howto/argparse.rst +++ b/Doc/howto/argparse.rst @@ -444,7 +444,7 @@ And the output: options: -h, --help show this help message and exit - -v {0,1,2}, --verbosity {0,1,2} + -v, --verbosity {0,1,2} increase output verbosity Note that the change also reflects both in the error message as well as the |