Ignore:
Timestamp:
10/05/14 12:30:27 (10 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
Phase:
public
Message:

Changed NOTAM acquisition to use PilotWeb as the primary source (re #232)

File:
1 edited

Legend:

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

    r564 r570  
    19891989            s = ""
    19901990            for notam in notams:
    1991                 s += str(notam.begin)
    1992                 if notam.end is not None:
    1993                     s += " - " + str(notam.end)
    1994                 elif notam.permanent:
    1995                     s += " - PERMANENT"
    1996                 s += "\n"
    1997                 if notam.repeatCycle:
    1998                     s += "Repeat cycle: " + notam.repeatCycle + "\n"
    1999                 s += notam.notice + "\n"
     1991                s += str(notam)
    20001992                s += "-------------------- * --------------------\n"
    20011993            buffer.set_text(s)
Note: See TracChangeset for help on using the changeset viewer.