Skip to content
This repository has been archived by the owner on May 4, 2022. It is now read-only.

Commit

Permalink
Merge pull request FWGS#116 from Aimless-Wanderer/patch-2
Browse files Browse the repository at this point in the history
wscript: fix join method usage
  • Loading branch information
a1batross committed Dec 8, 2019
2 parents e53f15c + 701d78d commit e67d115
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wscript
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,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
Expand Down

0 comments on commit e67d115

Please sign in to comment.