summaryrefslogtreecommitdiff
path: root/cloudinit/cloud.py
diff options
context:
space:
mode:
Diffstat (limited to 'cloudinit/cloud.py')
-rw-r--r--cloudinit/cloud.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cloudinit/cloud.py b/cloudinit/cloud.py
index 90679202..6cdcb76a 100644
--- a/cloudinit/cloud.py
+++ b/cloudinit/cloud.py
@@ -38,6 +38,7 @@ LOG = logging.getLogger(__name__)
# as providing a backwards compatible object that can be maintained
# while the stages/other objects can be worked on independently...
+
class Cloud(object):
def __init__(self, datasource, paths, cfg, distro, runners):
self.datasource = datasource
@@ -71,7 +72,7 @@ class Cloud(object):
# The rest of thes are just useful proxies
def get_userdata(self):
return self.datasource.get_userdata()
-
+
def get_instance_id(self):
return self.datasource.get_instance_id()