fix bug if ovf had empty seedfrom

This commit is contained in:
Scott Moser
2011-02-18 21:56:06 -05:00
parent 804749aca9
commit e854befffd

View File

@@ -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: