Ignore:
Timestamp:
06/04/12 11:39:30 (12 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
Phase:
public
Message:

Implemented the PIREP viewer tabs for the comments and the log

File:
1 edited

Legend:

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

    r220 r221  
    227227
    228228#------------------------------------------------------------------------------
     229
     230def formatFlightLogLine(timeStr, line):
     231    """Format the given flight log line."""
     232    """Format the given line for flight logging."""
     233    if timeStr is not None:
     234        line = timeStr + ": " + line
     235    return line + "\n"
     236
     237#------------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.