summaryrefslogtreecommitdiff
path: root/cloudinit/sources/DataSourceConfigDrive.py
diff options
context:
space:
mode:
authorJoseph Bajin <josephbajin@gmail.com>2014-08-18 11:16:45 -0400
committerJoseph Bajin <josephbajin@gmail.com>2014-08-18 11:16:45 -0400
commit7dbebd3fe9384ba90fce88cb715472d92e00e987 (patch)
treee3902ccd7e9d47fcdd452ce7112876e70b9a697d /cloudinit/sources/DataSourceConfigDrive.py
parent26c7693456c43ff5b7f91d99a9282802c180e313 (diff)
downloadvyos-cloud-init-7dbebd3fe9384ba90fce88cb715472d92e00e987.tar.gz
vyos-cloud-init-7dbebd3fe9384ba90fce88cb715472d92e00e987.zip
fix: Updated some syntax to be pep8 compliant
Diffstat (limited to 'cloudinit/sources/DataSourceConfigDrive.py')
-rw-r--r--cloudinit/sources/DataSourceConfigDrive.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/cloudinit/sources/DataSourceConfigDrive.py b/cloudinit/sources/DataSourceConfigDrive.py
index 7416ceec..82caf6eb 100644
--- a/cloudinit/sources/DataSourceConfigDrive.py
+++ b/cloudinit/sources/DataSourceConfigDrive.py
@@ -38,7 +38,7 @@ VALID_DSMODES = ("local", "net", "pass", "disabled")
FS_TYPES = ('vfat', 'iso9660')
LABEL_TYPES = ('config-2',)
POSSIBLE_MOUNTS = ('sr', 'cd')
-OPTICAL_DEVICES = tuple(('/dev/%s%s' % (z,i) for z in POSSIBLE_MOUNTS
+OPTICAL_DEVICES = tuple(('/dev/%s%s' % (z, i) for z in POSSIBLE_MOUNTS
for i in range(0, 2)))
@@ -75,10 +75,10 @@ class DataSourceConfigDrive(openstack.SourceMixin, sources.DataSource):
# Set mtype if freebsd and turn off sync
if dev.startswith("/dev/cd"):
mtype = "cd9660"
- sync = False
+ sync = False
else:
mtype = None
- sync = True
+ sync = True
results = util.mount_cb(dev, read_config_drive, mtype=mtype,
sync=sync)
found = dev