mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Run pyupgrade for Python >=3.8
This commit is contained in:
parent
69e98434e0
commit
65fb54614b
1 changed files with 6 additions and 6 deletions
|
@ -122,7 +122,7 @@ def _get_user_info(user=None):
|
|||
# if it doesn't exist then fall back to user Salt running as
|
||||
userinfo = _get_user_info()
|
||||
else:
|
||||
raise SaltInvocationError("User {} does not exist".format(user))
|
||||
raise SaltInvocationError(f"User {user} does not exist")
|
||||
|
||||
return userinfo
|
||||
|
||||
|
@ -1007,12 +1007,12 @@ def trust_key(keyid=None, fingerprint=None, trust_level=None, user=None):
|
|||
if key:
|
||||
if "fingerprint" not in key:
|
||||
ret["res"] = False
|
||||
ret["message"] = "Fingerprint not found for keyid {}".format(keyid)
|
||||
ret["message"] = f"Fingerprint not found for keyid {keyid}"
|
||||
return ret
|
||||
fingerprint = key["fingerprint"]
|
||||
else:
|
||||
ret["res"] = False
|
||||
ret["message"] = "KeyID {} not in GPG keychain".format(keyid)
|
||||
ret["message"] = f"KeyID {keyid} not in GPG keychain"
|
||||
return ret
|
||||
else:
|
||||
ret["res"] = False
|
||||
|
@ -1022,7 +1022,7 @@ def trust_key(keyid=None, fingerprint=None, trust_level=None, user=None):
|
|||
if trust_level not in _VALID_TRUST_LEVELS:
|
||||
return "ERROR: Valid trust levels - {}".format(",".join(_VALID_TRUST_LEVELS))
|
||||
|
||||
stdin = "{}:{}\n".format(fingerprint, NUM_TRUST_DICT[trust_level])
|
||||
stdin = f"{fingerprint}:{NUM_TRUST_DICT[trust_level]}\n"
|
||||
cmd = [_gpg(), "--import-ownertrust"]
|
||||
_user = user
|
||||
|
||||
|
@ -1418,7 +1418,7 @@ def encrypt(
|
|||
if result.ok:
|
||||
if not bare:
|
||||
if output:
|
||||
ret["comment"] = "Encrypted data has been written to {}".format(output)
|
||||
ret["comment"] = f"Encrypted data has been written to {output}"
|
||||
else:
|
||||
ret["comment"] = result.data
|
||||
else:
|
||||
|
@ -1506,7 +1506,7 @@ def decrypt(
|
|||
if result.ok:
|
||||
if not bare:
|
||||
if output:
|
||||
ret["comment"] = "Decrypted data has been written to {}".format(output)
|
||||
ret["comment"] = f"Decrypted data has been written to {output}"
|
||||
else:
|
||||
ret["comment"] = result.data
|
||||
else:
|
||||
|
|
Loading…
Add table
Reference in a new issue