Ignore:
Timestamp:
03/24/19 08:15:59 (5 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
python3
Phase:
public
Message:

Ran 2to3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/logger.py

    r634 r919  
    11
    2 from fs import sendMessage
    3 import const
    4 import util
     2from .fs import sendMessage
     3from . import const
     4from . import util
    55
    66import sys
     
    235235    def debug(self, msg):
    236236        """Log a debug message."""
    237         print "[DEBUG]", msg
     237        print("[DEBUG]", msg)
    238238
    239239    def stage(self, timestamp, stage):
     
    326326        """Get the rating of the flight so far."""
    327327        totalScore = 100
    328         for fault in self._faults.itervalues():
     328        for fault in self._faults.values():
    329329            score = fault.score
    330330            if score==Logger.NO_GO_SCORE:
Note: See TracChangeset for help on using the changeset viewer.