summaryrefslogtreecommitdiff
path: root/boto/ec2/autoscale/launchconfig.py
diff options
context:
space:
mode:
authorrlotun <rlotun@gmail.com>2011-04-01 12:46:39 +0100
committerrlotun <rlotun@gmail.com>2011-04-01 12:47:21 +0100
commit1561b06be423ee36442cd2c8935cc610aac3a0bd (patch)
treebf5d52c5a59b9633d5ba67798e20802c29f62f9f /boto/ec2/autoscale/launchconfig.py
parent676366469a1cc66d2a40667bd5aaaff551be13c2 (diff)
downloadboto-1561b06be423ee36442cd2c8935cc610aac3a0bd.tar.gz
Removed duplicated method definition.
Also, various pyflakes fixes for unused imports.
Diffstat (limited to 'boto/ec2/autoscale/launchconfig.py')
-rw-r--r--boto/ec2/autoscale/launchconfig.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/boto/ec2/autoscale/launchconfig.py b/boto/ec2/autoscale/launchconfig.py
index 473abe58..835a2efb 100644
--- a/boto/ec2/autoscale/launchconfig.py
+++ b/boto/ec2/autoscale/launchconfig.py
@@ -22,7 +22,6 @@
from datetime import datetime
from boto.resultset import ResultSet
-from boto.ec2.autoscale.request import Request
from boto.ec2.elb.listelement import ListElement
# this should use the corresponding object from boto.ec2
@@ -174,7 +173,7 @@ class LaunchConfiguration(object):
elif name == 'LaunchConfigurationARN':
self.launch_configuration_arn = value
elif name == 'InstanceMonitoring':
- selfinstance_monitoring = value
+ self.instance_monitoring = value
else:
setattr(self, name, value)