From e504226386c143988309d3730830375de2577e2f Mon Sep 17 00:00:00 2001 From: Eliot Alter Date: Mon, 20 May 2019 16:01:06 -0700 Subject: [PATCH] Fix a warning which was missing a space after the preiod. (#2022) --- moto/ec2/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moto/ec2/models.py b/moto/ec2/models.py index 0936d2be..fa07841b 100644 --- a/moto/ec2/models.py +++ b/moto/ec2/models.py @@ -404,7 +404,7 @@ class Instance(TaggedEC2Resource, BotoInstance): warnings.warn('Could not find AMI with image-id:{0}, ' 'in the near future this will ' 'cause an error.\n' - 'Use ec2_backend.describe_images() to' + 'Use ec2_backend.describe_images() to ' 'find suitable image for your test'.format(image_id), PendingDeprecationWarning)