Ignore:
Timestamp:
04/29/12 09:52:52 (12 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
Phase:
public
Message:

Various small fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/gui/info.py

    r127 r128  
    132132        """Get the list of delay codes checked by the user."""
    133133        codes =  []
    134         for index in range(0, len(FlightInfo._delayCodes)):
     134        delayCodes = FlightInfo._delayCodes()
     135        for index in range(0, len(delayCodes)):
    135136            if self._delayCodeWidgets[index].get_active():
    136                 codes.append(FlightInfo._delayCodes[index][0])
     137                codes.append(delayCodes[index][0])
    137138        return codes
    138139           
Note: See TracChangeset for help on using the changeset viewer.