fix indents

This commit is contained in:
Ondrej Samohel 2021-06-22 16:53:15 +02:00 committed by Ondřej Samohel
parent 39076fac36
commit 3a2f29150b
No known key found for this signature in database
GPG key ID: 02376E18990A97C6

View file

@ -338,13 +338,11 @@ def create_unreal_project(project_name: str,
if platform.system().lower() == "linux":
python_path = engine_path / ("Engine/Binaries/ThirdParty/"
"Python3/Linux" /
"bin" / "python3")
"Python3/Linux/bin/python3")
if platform.system().lower() == "darwin":
python_path = (engine_path / "Engine" / "Binaries" /
"ThirdParty" / "Python3" / "Mac" /
"bin" / "python3")
python_path = engine_path / ("Engine/Binaries/ThirdParty/"
"Python3/Mac/bin/python3")
if python_path:
if not python_path.exists():