1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-06-23 16:56:07 +01:00

framework/target: rename get_target_descriptions

Rename get_target_descriptions to list_target_descriptions.
This commit is contained in:
Sergei Trofimov
2017-12-15 09:45:08 +00:00
committed by marcbonnici
parent 7bd99637c1
commit 0a67e94709
6 changed files with 11 additions and 11 deletions

@ -6,7 +6,7 @@ from collections import OrderedDict
from distutils.dir_util import copy_tree
from wa import ComplexCommand, SubCommand, pluginloader, settings
from wa.framework.target.descriptor import get_target_descriptions
from wa.framework.target.descriptor import list_target_descriptions
from wa.framework.exception import ConfigError, CommandError
from wa.utils.misc import (ensure_directory_exists as _d, capitalize,
ensure_file_directory_exists as _f)
@ -41,7 +41,7 @@ class CreateAgendaSubcommand(SubCommand):
agenda['workloads'] = []
target_desc = None
targets = {td.name: td for td in get_target_descriptions()}
targets = {td.name: td for td in list_target_descriptions()}
for name in args.plugins:
if name in targets: