Fix minor non-important error in cache_devstack
Found this while porting to diskimage-builder - the basedir value is passed but not used. It's ok, because we happen to be using the same value- but it's an error waiting to happen. Change-Id: Ic2f39a9ff54c7bcdf3fcd48c4c6b2f98f6a88cf0
This commit is contained in:
parent
bdcd4ed440
commit
21598c0dfa
@ -52,7 +52,7 @@ def tokenize(fn, tokens, distribution, comment=None):
|
|||||||
def _legacy_find_images(basedir):
|
def _legacy_find_images(basedir):
|
||||||
"""Divine what images we should use based on parsing stackrc."""
|
"""Divine what images we should use based on parsing stackrc."""
|
||||||
images = []
|
images = []
|
||||||
for line in open(os.path.join(DEVSTACK, 'stackrc')):
|
for line in open(os.path.join(basedir, 'stackrc')):
|
||||||
line = line.strip()
|
line = line.strip()
|
||||||
if line.startswith('IMAGE_URLS'):
|
if line.startswith('IMAGE_URLS'):
|
||||||
if '#' in line:
|
if '#' in line:
|
||||||
@ -78,7 +78,7 @@ def _legacy_find_images(basedir):
|
|||||||
def _find_images(basedir):
|
def _find_images(basedir):
|
||||||
images = []
|
images = []
|
||||||
try:
|
try:
|
||||||
image_tool = os.path.join(DEVSTACK, 'tools', 'image_list.sh')
|
image_tool = os.path.join(basedir, 'tools', 'image_list.sh')
|
||||||
if os.path.exists(image_tool):
|
if os.path.exists(image_tool):
|
||||||
images = subprocess.check_output(image_tool).split('\n')
|
images = subprocess.check_output(image_tool).split('\n')
|
||||||
except subprocess.CalledProcessError as ce:
|
except subprocess.CalledProcessError as ce:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user