Skip to content

Commit 80e8eb1

Browse files
author
Roberto De Ioris
committed
fixed 20tab#80
1 parent 373afc2 commit 80e8eb1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/UnrealEnginePython/UnrealEnginePython.Build.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ protected string PythonHome
1313
{
1414
get
1515
{
16-
return Path.GetFullPath(Path.Combine(ModuleDirectory, "../../../", pythonHome));
16+
return Path.GetFullPath(Path.Combine(ModuleDirectory, "..", "..", pythonHome));
1717
}
1818
}
1919

@@ -80,7 +80,7 @@ public UnrealEnginePython(TargetInfo Target)
8080

8181
if ((Target.Platform == UnrealTargetPlatform.Win64) || (Target.Platform == UnrealTargetPlatform.Win32))
8282
{
83-
System.Console.WriteLine("-------->Using Python at: " + PythonHome);
83+
System.Console.WriteLine("Using Python at: " + PythonHome);
8484
PublicIncludePaths.Add(PythonHome);
8585
PublicAdditionalLibraries.Add(Path.Combine(PythonHome, "libs", string.Format("{0}.lib", pythonHome)));
8686
}

0 commit comments

Comments
 (0)