mirror of
https://github.com/Py-KMS-Organization/py-kms.git
synced 2025-06-05 20:17:19 +02:00
Fixed space at end of string
This commit is contained in:
parent
98e0900f32
commit
32b6623c2b
1 changed files with 2 additions and 2 deletions
|
@ -53,8 +53,8 @@ _version_info_path = os.environ.get('PYKMS_VERSION_PATH', '../VERSION')
|
|||
if os.path.exists(_version_info_path):
|
||||
with open(_version_info_path, 'r') as f:
|
||||
app.jinja_env.globals['version_info'] = {
|
||||
'hash': f.readline(),
|
||||
'branch': f.readline()
|
||||
'hash': f.readline().strip(),
|
||||
'branch': f.readline().strip()
|
||||
}
|
||||
|
||||
_dbEnvVarName = 'PYKMS_SQLITE_DB_PATH'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue