Add default verbosity to add_miniconda.py

Required to prevent a crash when no verbosity given.
This commit is contained in:
Alex Hedges 2021-09-17 23:27:41 -04:00
parent 0c6ad7c52b
commit 3a20ce7555

View file

@ -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()