Merge "Fix column index for sorting in rall verify list"

This commit is contained in:
Jenkins 2014-04-16 14:14:59 +00:00 committed by Gerrit Code Review
commit 249b738d4f

View File

@ -76,7 +76,8 @@ class VerifyCommands(object):
'Created at', 'Status'] 'Created at', 'Status']
verifications = db.verification_list() verifications = db.verification_list()
if verifications: if verifications:
common_cliutils.print_list(verifications, fields, sortby_index=6) common_cliutils.print_list(verifications, fields,
sortby_index=fields.index('Created at'))
else: else:
print(_("There are no results from verifier. To run a verifier, " print(_("There are no results from verifier. To run a verifier, "
"use:\nrally verify start")) "use:\nrally verify start"))