Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Fixed a typo bug in Instance class. Fixes issue 487.
Browse files Browse the repository at this point in the history
  • Loading branch information
garnaat committed Jan 11, 2011
1 parent fe793cf commit 899ab55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boto/ec2/instance.py
Expand Up @@ -293,7 +293,7 @@ def get_attribute(self, attribute):
:return: An InstanceAttribute object representing the value of the
attribute requested
"""
return self.connection.describe_attribute(self.id, attribute)
return self.connection.get_instance_attribute(self.id, attribute)

def modify_attribute(self, attribute, value):
"""
Expand Down

0 comments on commit 899ab55

Please sign in to comment.