Index: boto/ec2/autoscale/__init__.py |
diff --git a/boto/ec2/autoscale/__init__.py b/boto/ec2/autoscale/__init__.py |
index 680c28f486850d368f22b821d06a50fe1388b819..fceac59129c333f62eb6e654e483c2682b0d2af6 100644 |
--- a/boto/ec2/autoscale/__init__.py |
+++ b/boto/ec2/autoscale/__init__.py |
@@ -42,6 +42,7 @@ from boto.ec2.autoscale.scheduled import ScheduledUpdateGroupAction |
RegionData = { |
'us-east-1' : 'autoscaling.us-east-1.amazonaws.com', |
'us-west-1' : 'autoscaling.us-west-1.amazonaws.com', |
+ 'us-west-2' : 'autoscaling.us-west-2.amazonaws.com', |
'eu-west-1' : 'autoscaling.eu-west-1.amazonaws.com', |
'ap-northeast-1' : 'autoscaling.ap-northeast-1.amazonaws.com', |
'ap-southeast-1' : 'autoscaling.ap-southeast-1.amazonaws.com'} |
@@ -86,7 +87,7 @@ class AutoScaleConnection(AWSQueryConnection): |
def __init__(self, aws_access_key_id=None, aws_secret_access_key=None, |
is_secure=True, port=None, proxy=None, proxy_port=None, |
- proxy_user=None, proxy_pass=None, debug=None, |
+ proxy_user=None, proxy_pass=None, debug=0, |
https_connection_factory=None, region=None, path='/'): |
""" |
Init method to create a new connection to the AutoScaling service. |