Use correct non-branch wording

Signed-off-by: simonmicro <simon@simonmicro.de>
This commit is contained in:
simonmicro 2025-12-06 18:54:19 +01:00
parent bc7381895b
commit 1621f9a745
No known key found for this signature in database
GPG key ID: 033A4D4CE4E063D6
2 changed files with 2 additions and 2 deletions

View file

@ -55,7 +55,7 @@ if os.path.exists(_version_info_path):
with open(_version_info_path, 'r') as f:
app.jinja_env.globals['version_info'] = {
'hash': f.readline().strip(),
'branch': f.readline().strip()
'reference': f.readline().strip()
}
_dbEnvVarName = 'PYKMS_SQLITE_DB_PATH'

View file

@ -41,7 +41,7 @@
<strong>py-kms</strong> is online since <span class="convert_timestamp">{{ start_time }}</span>.
This instance was accessed {{ get_serve_count() }} times. View this softwares license <a href="/license">here</a>.
{% if version_info %}
<br>This instance is running version "{{ version_info['hash'] }}" from branch "{{ version_info['branch'] }}" of py-kms.
<br>This instance is running version "{{ version_info['hash'] }}" from Git "{{ version_info['reference'] }}" of py-kms.
{% endif %}
</p>
</div>