summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--boto/ec2/autoscale/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/boto/ec2/autoscale/__init__.py b/boto/ec2/autoscale/__init__.py
index 961346e7..6840a4ee 100644
--- a/boto/ec2/autoscale/__init__.py
+++ b/boto/ec2/autoscale/__init__.py
@@ -485,11 +485,11 @@ class AutoScaleConnection(AWSQueryConnection):
'ScheduledActionName' : name,
'Time' : time.isoformat(),
}
- if desired_capacity:
+ if desired_capacity is not None:
params['DesiredCapacity'] = desired_capacity
- if min_size:
+ if min_size is not None:
params['MinSize'] = min_size
- if max_size:
+ if max_size is not None:
params['MaxSize'] = max_size
return self.get_status('PutScheduledUpdateGroupAction', params)