From 4c40f39a68fa22ad4694e38831ef6add85f319a1 Mon Sep 17 00:00:00 2001 From: Steve Pulec Date: Sun, 11 Jan 2015 16:27:02 -0500 Subject: [PATCH] Fix for py26. --- moto/rds/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moto/rds/models.py b/moto/rds/models.py index 2c91a755..f0ac1e78 100644 --- a/moto/rds/models.py +++ b/moto/rds/models.py @@ -65,7 +65,7 @@ class Database(object): @property def address(self): - return "{}.aaaaaaaaaa.{}.rds.amazonaws.com".format(self.db_instance_identifier, self.region) + return "{0}.aaaaaaaaaa.{1}.rds.amazonaws.com".format(self.db_instance_identifier, self.region) def add_replica(self, replica): self.replicas.append(replica.db_instance_identifier)