Handle empty IMAGE_URL lines in devstack_cache

Handles lines of the form:
        IMAGE_URLS=${IMAGE_URLS:-};;

Change-Id: Id99586393d28c3c11846f76634256cb497812e5e
This commit is contained in:
James E. Blair 2014-02-16 07:15:49 -08:00
parent cb2664a7aa
commit e204daab5f

View File

@ -92,6 +92,8 @@ def local_prep(distribution):
line = line[len('${IMAGE_URLS:-'):]
if line.endswith('}'):
line = line[:-1]
if not line:
continue
if line[0] == line[-1] == '"':
line = line[1:-1]
images += [x.strip() for x in line.split(',')]