Changeset 777

Show
Ignore:
Timestamp:
06/07/10 23:58:11 (20 months ago)
Author:
hodgestar
Message:

Handle DQ entries in standings Final Position field.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • hodgestar/Vtes/tournaments/standings.py

    r650 r777  
    9494            result = [] 
    9595            for (col, ctype) in [ 
    96                 (0, int), (4, int), 
     96                (0, lambda v: None if v == 'DQ' else int(v)), 
     97                (4, int), 
    9798                (5, float), (6, float), 
    9899                (7, float),