소스 검색

Fix Python version check for multi-check download args

Cammy 6 년 전
부모
커밋
89691dad2a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      pyinstalive/initialize.py

+ 1 - 1
pyinstalive/initialize.py

@@ -495,7 +495,7 @@ def run():
 					log_warn("You probably ran PyInstaLive as a script module with the -m argument.")
 					log_warn("PyInstaLive should be properly installed when using the -df argument.")
 					log_seperator()
-					if python_version[0] == 3:
+					if python_version[0] == "3":
 						start_multiple(api, settings, "python3 -m pyinstalive")
 					else:
 						start_multiple(api, settings, "python -m pyinstalive")