소스 검색

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

불러오는 중...
취소
저장