1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Provide more clarity on intention of quiet option

And on how it is interpreted by the application
This commit is contained in:
Benjamin VanEvery 2016-07-21 16:59:17 -04:00
parent 17df548ce9
commit ed8450debb

View file

@ -114,7 +114,9 @@ quiet = partial(
dest='quiet',
action='count',
default=0,
help='Give less output.')
help=('Give less output. Option is additive, and can be used up to 3'
' times (corresponding to WARNING, ERROR, and CRITICAL logging'
' levels).')
log = partial(
Option,