From d51e10a3f45ea34342c643bb659c0051b66cb112 Mon Sep 17 00:00:00 2001 From: James Laska Date: Sat, 26 Jul 2014 12:11:25 -0400 Subject: [PATCH] Correct BotoServerError typo in ec2 module Resolves a traceback due to an undefined 'BotoSeverError' exception. --- library/cloud/ec2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/cloud/ec2 b/library/cloud/ec2 index fd4ef0d8e78..e6358e49cad 100644 --- a/library/cloud/ec2 +++ b/library/cloud/ec2 @@ -923,7 +923,7 @@ def create_instances(module, ec2, override_count=None): while wait_timeout > time.time() and num_running < len(instids): try: res_list = ec2.get_all_instances(instids) - except boto.exception.BotoSeverError, e: + except boto.exception.BotoServerError, e: if e.error_code == 'InvalidInstanceID.NotFound': time.sleep(1) continue