diff options
author | Scott Moser <smoser@ubuntu.com> | 2012-07-12 15:20:24 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2012-07-12 15:20:24 -0400 |
commit | 5e296811619c7e814f61c8671cd596fe4203a38a (patch) | |
tree | 4b28574bbcc2c9e268442bb41d8721d81185e302 | |
parent | a2ba3597657ab94499dacd4ba7565056df4b6ccb (diff) | |
download | vyos-cloud-init-5e296811619c7e814f61c8671cd596fe4203a38a.tar.gz vyos-cloud-init-5e296811619c7e814f61c8671cd596fe4203a38a.zip |
DataSourceOVF: again fix broken commit
-rw-r--r-- | cloudinit/sources/DataSourceOVF.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cloudinit/sources/DataSourceOVF.py b/cloudinit/sources/DataSourceOVF.py index 0f38afcc..771e64eb 100644 --- a/cloudinit/sources/DataSourceOVF.py +++ b/cloudinit/sources/DataSourceOVF.py @@ -214,6 +214,7 @@ def transport_iso9660(require_iso=True): get_ovf_env, mtype="iso9660") except util.MountFailedError: LOG.debug("%s not mountable as iso9660" % fullp) + continue if contents is not False: return (contents, fullp, fname) |