summaryrefslogtreecommitdiff
path: root/methods.py
diff options
context:
space:
mode:
authorBjörn Feber <bfeber@protonmail.com>2022-09-25 13:26:47 +0200
committerGitHub <noreply@github.com>2022-09-25 13:26:47 +0200
commitd4dba877d23149c10d722588ef025733ee93d73c (patch)
treed87c0afd99e9c59541c05c66e0c8aa83b1b3090a /methods.py
parent15ac442247b2b45ae0e2900d18f26e5b82e6c011 (diff)
Fix compilation with custom "GODOT_VERSION_STATUS"
Diffstat (limited to 'methods.py')
-rw-r--r--methods.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/methods.py b/methods.py
index ba051322e1..97a1e15e35 100644
--- a/methods.py
+++ b/methods.py
@@ -105,7 +105,7 @@ def get_version_info(module_version_string="", silent=False):
if os.getenv("GODOT_VERSION_STATUS") != None:
version_info["status"] = str(os.getenv("GODOT_VERSION_STATUS"))
if not silent:
- print(f"Using version status '{version_info.status}', overriding the original '{version.status}'.")
+ print(f"Using version status '{version_info['status']}', overriding the original '{version.status}'.")
# Parse Git hash if we're in a Git repo.
githash = ""