summaryrefslogtreecommitdiff
path: root/boto/ec2/spotdatafeedsubscription.py
diff options
context:
space:
mode:
Diffstat (limited to 'boto/ec2/spotdatafeedsubscription.py')
-rw-r--r--boto/ec2/spotdatafeedsubscription.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/boto/ec2/spotdatafeedsubscription.py b/boto/ec2/spotdatafeedsubscription.py
index 26ef7adc..d0e0be8d 100644
--- a/boto/ec2/spotdatafeedsubscription.py
+++ b/boto/ec2/spotdatafeedsubscription.py
@@ -25,10 +25,11 @@ Represents an EC2 Spot Instance Datafeed Subscription
from boto.ec2.ec2object import EC2Object
from boto.ec2.spotinstancerequest import SpotInstanceStateFault
+
class SpotDatafeedSubscription(EC2Object):
def __init__(self, connection=None, owner_id=None,
- bucket=None, prefix=None, state=None,fault=None):
+ bucket=None, prefix=None, state=None, fault=None):
super(SpotDatafeedSubscription, self).__init__(connection)
self.owner_id = owner_id
self.bucket = bucket
@@ -62,4 +63,3 @@ class SpotDatafeedSubscription(EC2Object):
return self.connection.delete_spot_datafeed_subscription(
dry_run=dry_run
)
-