From c89e7c6de14d575124dfe5e628580865d6c69a03 Mon Sep 17 00:00:00 2001 From: Shawn Falkner-Horine Date: Tue, 26 Aug 2014 13:31:08 -0700 Subject: [PATCH] DescribeSubnets: Added support for 'filters' parameter. (fixed NotImplemented error message) --- 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 7ee4b3c14..a80dd3cfc 100644 --- a/moto/ec2/models.py +++ b/moto/ec2/models.py @@ -889,7 +889,7 @@ class Subnet(TaggedEC2Instance): else: msg = "The filter '{0}' for DescribeSubnets has not been" \ " implemented in Moto yet. Feel free to open an issue at" \ - " https://github.com/spulec/moto/issues" + " https://github.com/spulec/moto/issues".format(filter_name) raise NotImplementedError(msg)