Skip to content

Commit

Permalink
[3.11] gh-100916: Convert argument to appropriate type (GH-100917) (G…
Browse files Browse the repository at this point in the history
…H-100918)

Co-authored-by: Yao-Ching Huang <[email protected]>
  • Loading branch information
miss-islington and huang06 authored Jan 10, 2023
1 parent 1e74a12 commit a7f9afd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Doc/howto/logging-cookbook.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1131,7 +1131,7 @@ each request is handled by a thread:
'context can be used to '
'populate logs')
aa = ap.add_argument
aa('--count', '-c', default=100, help='How many requests to simulate')
aa('--count', '-c', type=int, default=100, help='How many requests to simulate')
options = ap.parse_args()
# Create the dummy webapps and put them in a list which we can use to select
Expand Down

0 comments on commit a7f9afd

Please sign in to comment.