mirror of
https://github.com/pyenv/pyenv.git
synced 2024-12-22 23:30:48 +00:00
Add default verbosity to add_miniconda.py
Required to prevent a crash when no verbosity given.
This commit is contained in:
parent
0c6ad7c52b
commit
3a20ce7555
1 changed files with 1 additions and 1 deletions
|
@ -250,7 +250,7 @@ if __name__ == "__main__":
|
|||
help="Do not write scripts, just report them to stdout",
|
||||
)
|
||||
parser.add_argument(
|
||||
"-v", "--verbose", action="count",
|
||||
"-v", "--verbose", action="count", default=0,
|
||||
help="Increase verbosity of logging",
|
||||
)
|
||||
parsed = parser.parse_args()
|
||||
|
|
Loading…
Reference in a new issue