diff options
author | Scott Moser <smoser@ubuntu.com> | 2014-09-10 14:42:33 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2014-09-10 14:42:33 -0400 |
commit | 64f4a63c174a4f7c21e6e372927906099103d64c (patch) | |
tree | 3a80c0dd7c92ce0c3766ca19f6b035037ea4d4c0 /cloudinit/sources | |
parent | 1b975098ea2cc82a168203c720ef936db4864467 (diff) | |
download | vyos-cloud-init-64f4a63c174a4f7c21e6e372927906099103d64c.tar.gz vyos-cloud-init-64f4a63c174a4f7c21e6e372927906099103d64c.zip |
fix a bug, use a list instead of tuple for _versions
using tuple for _versions was just not necessary.
fix reference to undefined os_versions.
Diffstat (limited to 'cloudinit/sources')
-rw-r--r-- | cloudinit/sources/helpers/openstack.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cloudinit/sources/helpers/openstack.py b/cloudinit/sources/helpers/openstack.py index 0c6b9b5a..3c3de7e4 100644 --- a/cloudinit/sources/helpers/openstack.py +++ b/cloudinit/sources/helpers/openstack.py @@ -328,7 +328,7 @@ class ConfigDriveReader(BaseReader): path = self._path_join(self.base_path, 'openstack') found = [d for d in os.listdir(path) if os.path.isdir(os.path.join(path))] - self._versions = tuple(found) + self._versions = found return self._versions def _read_ec2_metadata(self): @@ -421,7 +421,7 @@ class MetadataReader(BaseReader): def _fetch_available_versions(self): # <baseurl>/openstack/ returns a newline separated list of versions if self._versions is not None: - return self.os_versions + return self._versions found = [] version_path = self._path_join(self.base_path, "openstack") content = self._path_read(version_path) @@ -430,7 +430,7 @@ class MetadataReader(BaseReader): if not line: continue found.append(line) - self._versions = tuple(found) + self._versions = found return self._versions |