From 38611c3c99fab7f344a4cff4ddb1cc9b53183938 Mon Sep 17 00:00:00 2001 From: Steve Pulec Date: Tue, 19 Feb 2013 22:27:36 -0500 Subject: [PATCH] fixing core model reset --- moto/core/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moto/core/models.py b/moto/core/models.py index 965c35c40..1a0268569 100644 --- a/moto/core/models.py +++ b/moto/core/models.py @@ -7,7 +7,7 @@ from httpretty import HTTPretty class BaseBackend(object): def reset(self): - self = self.__class__() + self.__init__() @property def urls(self):