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:
Monty Taylor 2014-04-28 08:19:57 -07:00
parent bdcd4ed440
commit 21598c0dfa

View File

@ -52,7 +52,7 @@ def tokenize(fn, tokens, distribution, comment=None):
def _legacy_find_images(basedir):
"""Divine what images we should use based on parsing stackrc."""
images = []
for line in open(os.path.join(DEVSTACK, 'stackrc')):
for line in open(os.path.join(basedir, 'stackrc')):
line = line.strip()
if line.startswith('IMAGE_URLS'):
if '#' in line:
@ -78,7 +78,7 @@ def _legacy_find_images(basedir):
def _find_images(basedir):
images = []
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):
images = subprocess.check_output(image_tool).split('\n')
except subprocess.CalledProcessError as ce: