Misc typo fixes (#49816)

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
Abhijeet Kasurde
2018-12-14 15:12:58 +05:30
committed by GitHub
parent 7609a8cdd6
commit 013c42b14f
24 changed files with 37 additions and 37 deletions

View File

@@ -199,7 +199,7 @@ class CLI(with_metaclass(ABCMeta, object)):
for password_file in vault_password_files:
id_slug = u'%s@%s' % (C.DEFAULT_VAULT_IDENTITY, password_file)
# note this makes --vault-id higher precendence than --vault-password-file
# note this makes --vault-id higher precedence than --vault-password-file
# if we want to intertwingle them in order probably need a cli callback to populate vault_ids
# used by --vault-id and --vault-password-file
vault_ids.append(id_slug)
@@ -267,7 +267,7 @@ class CLI(with_metaclass(ABCMeta, object)):
vault_id=built_vault_id)
# a empty or invalid password from the prompt will warn and continue to the next
# without erroring globablly
# without erroring globally
try:
prompted_vault_secret.load()
except AnsibleError as exc:

View File

@@ -97,7 +97,7 @@ class ConfigCLI(CLI):
# pylint: disable=unreachable
if self.options.setting is None:
raise AnsibleOptionsError("update option requries a setting to update")
raise AnsibleOptionsError("update option requires a setting to update")
(entry, value) = self.options.setting.split('=')
if '.' in entry: