Changeset 654

Show
Ignore:
Timestamp:
06/13/08 12:01:41 (3 months ago)
Author:
dustin@v.igoro.us
Message:

#300:sort-grid.patch
Sort the builders in the grid display

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • buildbot/status/web/grid.py

    r614 r654  
    180180        data += '</tr>\n' 
    181181 
    182         for bn in status.getBuilderNames(): 
     182        sortedBuilderNames = status.getBuilderNames()[:] 
     183        sortedBuilderNames.sort() 
     184        for bn in sortedBuilderNames: 
    183185            builds = [None] * len(stamps) 
    184186