From 682c1c6da97da447f9807e90ab7d83f77bc59d4b Mon Sep 17 00:00:00 2001 From: Aimless-Wanderer <53096779+Aimless-Wanderer@users.noreply.github.com> Date: Thu, 31 Oct 2019 18:13:22 +0200 Subject: [PATCH] build: fix travis ci I think travis is still using Python 3.4.*, so f-strings are not supported yet and android engine doesn't build. --- dlls/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/wscript b/dlls/wscript index 250761e1..b285efa3 100644 --- a/dlls/wscript +++ b/dlls/wscript @@ -16,7 +16,7 @@ def configure(conf): hlDefNode = conf.path.find_resource("./hl.def") if hlDefNode is not None: - conf.env.append_unique('LINKFLAGS', f'/def:{hlDefNode.abspath()}') + conf.env.append_unique('LINKFLAGS', '/def:{}'.format(hlDefNode.abspath())) else: conf.fatal("Could not find hl.def")