diff options
author | Björn Feber <bfeber@protonmail.com> | 2022-09-25 13:26:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-25 13:26:47 +0200 |
commit | d4dba877d23149c10d722588ef025733ee93d73c (patch) | |
tree | d87c0afd99e9c59541c05c66e0c8aa83b1b3090a /methods.py | |
parent | 15ac442247b2b45ae0e2900d18f26e5b82e6c011 (diff) |
Fix compilation with custom "GODOT_VERSION_STATUS"
Diffstat (limited to 'methods.py')
-rw-r--r-- | methods.py | 2 |
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 = "" |