Skip to content

Commit

Permalink
Fix args
Browse files Browse the repository at this point in the history
  • Loading branch information
encukou committed Sep 26, 2024
1 parent e936dcc commit 0cf60ed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion master/custom/release_dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ def get_release_status():

failed_builds.append((builder, last_build))

def tier_sort_key(tier, data):
def tier_sort_key(item):
tier, data = item
if tier == 'no tier':
return 'zzz' # sort last
return tier
Expand Down

0 comments on commit 0cf60ed

Please sign in to comment.