瀏覽代碼

Add default verbosity to add_miniconda.py

Required to prevent a crash when no verbosity given.
pull/2072/head
Alex Hedges 4 年之前
父節點
當前提交
3a20ce7555
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      plugins/python-build/scripts/add_miniconda.py

+ 1
- 1
plugins/python-build/scripts/add_miniconda.py 查看文件

@ -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…
取消
儲存