You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
769 B
20 lines
769 B
12 years ago
|
Index: boto/boto/ec2/autoscale/tag.py
|
||
|
===================================================================
|
||
|
--- boto.orig/boto/ec2/autoscale/tag.py
|
||
|
+++ boto/boto/ec2/autoscale/tag.py
|
||
|
@@ -55,11 +55,11 @@ class Tag(object):
|
||
|
self.key = value
|
||
|
elif name == 'Value':
|
||
|
self.value = value
|
||
|
- elif name == 'PropogateAtLaunch':
|
||
|
+ elif name == 'PropagateAtLaunch':
|
||
|
if value.lower() == 'true':
|
||
|
- self.propogate_at_launch = True
|
||
|
+ self.propagate_at_launch = True
|
||
|
else:
|
||
|
- self.propogate_at_launch = False
|
||
|
+ self.propagate_at_launch = False
|
||
|
elif name == 'ResourceId':
|
||
|
self.resource_id = value
|
||
|
elif name == 'ResourceType':
|