Skip to content

Commit

Permalink
Fixed space at end of string
Browse files Browse the repository at this point in the history
  • Loading branch information
simonmicro committed Mar 15, 2023
1 parent 98e0900 commit 32b6623
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py-kms/pykms_WebUI.py
Expand Up @@ -53,8 +53,8 @@ def _get_kms_items_cache():
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'
Expand Down

0 comments on commit 32b6623

Please sign in to comment.