Skip to content

Commit

Permalink
SCons: Fix info message when defining GODOT_VERSION_STATUS
Browse files Browse the repository at this point in the history
  • Loading branch information
akien-mga committed Aug 5, 2021
1 parent a544e77 commit e92ba89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def update_version(module_version_string=""):
godot_status = str(version.status)
if os.getenv("GODOT_VERSION_STATUS") != None:
godot_status = str(os.getenv("GODOT_VERSION_STATUS"))
print("Using version status '%s', overriding the original '%s'.".format(godot_status, str(version.status)))
print("Using version status '{}', overriding the original '{}'.".format(godot_status, str(version.status)))
f.write('#define VERSION_STATUS "' + godot_status + '"\n')
f.write('#define VERSION_BUILD "' + str(build_name) + '"\n')
f.write('#define VERSION_MODULE_CONFIG "' + str(version.module_config) + module_version_string + '"\n')
Expand Down

0 comments on commit e92ba89

Please sign in to comment.