(3.x) Fix compilation with custom "GODOT_VERSION_STATUS"
This commit is contained in:
parent
eb0b5d38d1
commit
3f407dc65c
1 changed files with 3 additions and 1 deletions
|
@ -92,7 +92,9 @@ def get_version_info(module_version_string="", silent=False):
|
||||||
version_info["status"] = str(os.getenv("GODOT_VERSION_STATUS"))
|
version_info["status"] = str(os.getenv("GODOT_VERSION_STATUS"))
|
||||||
if not silent:
|
if not silent:
|
||||||
print(
|
print(
|
||||||
"Using version status '{}', overriding the original '{}'.".format(version_info.status, version.status)
|
"Using version status '{}', overriding the original '{}'.".format(
|
||||||
|
version_info["status"], version.status
|
||||||
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
# Parse Git hash if we're in a Git repo.
|
# Parse Git hash if we're in a Git repo.
|
||||||
|
|
Loading…
Reference in a new issue