From 10def11d39f787a810834610251201d68bdd765e 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) --- cloud/amazon/GUIDELINES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/amazon/GUIDELINES.md b/cloud/amazon/GUIDELINES.md index 0c831946be6..017ff9090db 100644 --- a/cloud/amazon/GUIDELINES.md +++ b/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') ```