From 39f381f87185211d4b175d37141fc398ff2f17ab Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Wed, 29 May 2024 21:27:25 -0600 Subject: [PATCH] fix old python syntax in an SConscript file --- pkg/win/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/win/SConscript b/pkg/win/SConscript index 79e6b0725..f76852e5d 100644 --- a/pkg/win/SConscript +++ b/pkg/win/SConscript @@ -4,7 +4,7 @@ import os.path as path Import("env platform") if str(platform) != "win32": - print "Error: Building for", str(platform), "but trying to create a Windows installer package" + print(f"Error: Building for {platform}, but trying to create a Windows installer package") env.Depends("data.nsi", ["gen-data.py", "#build/Blades of Exile/data"])