diff options
Diffstat (limited to 'boto/beanstalk/response.py')
-rw-r--r-- | boto/beanstalk/response.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boto/beanstalk/response.py b/boto/beanstalk/response.py index 22bc1028..2d071bc9 100644 --- a/boto/beanstalk/response.py +++ b/boto/beanstalk/response.py @@ -175,7 +175,7 @@ class EnvironmentDescription(BaseObject): class EnvironmentInfoDescription(BaseObject): def __init__(self, response): - EnvironmentInfoDescription(Response, self).__init__() + super(EnvironmentInfoDescription, self).__init__() self.ec2_instance_id = str(response['Ec2InstanceId']) self.info_type = str(response['InfoType']) |