diff options
Diffstat (limited to 'cloudinit')
-rw-r--r-- | cloudinit/DataSourceOVF.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/DataSourceOVF.py b/cloudinit/DataSourceOVF.py index 6f0bd523..04fa8da8 100644 --- a/cloudinit/DataSourceOVF.py +++ b/cloudinit/DataSourceOVF.py @@ -79,7 +79,7 @@ class DataSourceOVF(DataSource.DataSource): if len(found) == 0: return False - if 'seedfrom' in md: + if 'seedfrom' in md and md['seedfrom']: seedfrom = md['seedfrom'] seedfound = False for proto in self.supported_seed_starts: |