https://bugzilla.redhat.com/show_bug.cgi?id=1011682 https://github.com/boto/boto/pull/1739f38
parent
51a0fabcc4
commit
92c247b856
@ -0,0 +1,19 @@
|
||||
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':
|
Loading…
Reference in new issue