Browse Source

autotest: make column ordering in rst gen stable

needed for cache of param builds
zr-v5.1
Andrew Tridgell 5 years ago
parent
commit
7ad8ea017c
  1. 2
      Tools/autotest/param_metadata/rstemit.py

2
Tools/autotest/param_metadata/rstemit.py

@ -241,7 +241,7 @@ Complete Parameter List @@ -241,7 +241,7 @@ Complete Parameter List
headings = []
row = []
for field in param.__dict__.keys():
for field in sorted(param.__dict__.keys()):
if field not in ['name', 'DisplayName', 'Description', 'User'] and field in known_param_fields:
headings.append(field)
if field in field_table_info and Emit.prog_values_field.match(param.__dict__[field]):

Loading…
Cancel
Save