bug: pass password with fstring

This commit is contained in:
Einar Forselv 2019-11-29 05:36:46 +01:00
parent 95fb69d364
commit 62075c2b6d
1 changed files with 3 additions and 4 deletions

View File

@ -62,7 +62,7 @@ def backup_mysql_database(repository, host, port, user, password, filename, data
pass
def mysql_ping(host, port, username, password):
def ping_mysql(host, port, username, password):
"""Check if the database is up and can be reached"""
return run_command([
'mysqladmin',
@ -71,10 +71,9 @@ def mysql_ping(host, port, username, password):
host,
'--port',
port,
'-user',
'--user',
username,
'--password',
password,
f'--password={password}',
])
def snapshots(repository):