From cf804fb0b8a59abacca5fe38de3c12b23ec8c9a3 Mon Sep 17 00:00:00 2001 From: Jens Carl Date: Tue, 12 Apr 2016 15:10:41 -0700 Subject: [PATCH] Fix code example (#2018) --- lib/ansible/modules/extras/cloud/amazon/GUIDELINES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/extras/cloud/amazon/GUIDELINES.md b/lib/ansible/modules/extras/cloud/amazon/GUIDELINES.md index 0c831946be..017ff9090d 100644 --- a/lib/ansible/modules/extras/cloud/amazon/GUIDELINES.md +++ b/lib/ansible/modules/extras/cloud/amazon/GUIDELINES.md @@ -79,7 +79,7 @@ except ImportError: def main(): - if not HAS_BOTO: + if not HAS_BOTO3: module.fail_json(msg='boto required for this module') ```