Misc typo fixes (#47699)

fixes requried to required

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
Abhijeet Kasurde 2018-10-28 12:35:30 +05:30 committed by GitHub
commit 3568dc512a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View file

@ -296,11 +296,11 @@ class AnsibleCloudStackIso(AnsibleCloudStack):
args['zoneid'] = -1
if args['bootable'] and not args['ostypeid']:
self.module.fail_json(msg="OS type 'os_type' is requried if 'bootable=true'.")
self.module.fail_json(msg="OS type 'os_type' is required if 'bootable=true'.")
args['url'] = self.module.params.get('url')
if not args['url']:
self.module.fail_json(msg="URL is requried.")
self.module.fail_json(msg="URL is required.")
self.result['changed'] = True
if not self.module.check_mode: