From c57d8995c67b5f91ab9b8d0a03b94b20b432ffa0 Mon Sep 17 00:00:00 2001 From: Aimless-Wanderer <53096779+Aimless-Wanderer@users.noreply.github.com> Date: Tue, 10 Dec 2019 13:13:25 +0200 Subject: [PATCH] wscript: fix syntax Same as https://github.com/FWGS/hlsdk-xash3d/pull/116 --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index f809523b..189fc64d 100644 --- a/wscript +++ b/wscript @@ -101,7 +101,7 @@ def configure(conf): conf.fatal('Please set a build type, for example "-T release"') elif not conf.options.BUILD_TYPE in valid_build_types: conf.end_msg(conf.options.BUILD_TYPE, color='RED') - conf.fatal('Invalid build type. Valid are: %s' % valid_build_types.join(', ')) + conf.fatal('Invalid build type. Valid are: %s' % ', '.join(valid_build_types)) conf.end_msg(conf.options.BUILD_TYPE) # -march=native should not be used