1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2024-10-06 02:41:11 +01:00

doc/build_instrument_method_map: update table header

Update the decorator stable header to state "decorator" rather than
"prefix" (this was left over from WA2).
This commit is contained in:
Sergei Trofimov 2018-05-30 11:16:32 +01:00 committed by Marc Bonnici
parent 42bae98d50
commit e015f438ae

View File

@ -37,7 +37,7 @@ def generate_instrument_method_map(outfile):
signal_table = format_simple_table([(k, v) for k, v in SIGNAL_MAP.iteritems()],
headers=['method name', 'signal'], align='<<')
priority_table = format_simple_table(zip(Priority.names, Priority.values),
headers=['prefix', 'priority'], align='<>')
headers=['decorator', 'priority'], align='<>')
with open(OUTPUT_TEMPLATE_FILE) as fh:
template = string.Template(fh.read())
with open(outfile, 'w') as wfh: