Ignore:
Timestamp:
03/24/19 08:15:59 (5 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
python3
hg-Phase:
(<MercurialRepository 1 'hg:/home/ivaradi/mlx/hg' '/'>, 'public')
Message:

Ran 2to3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/soundsched.py

    r352 r919  
    11
    2 from sound import startSound
    3 import const
    4 import fs
     2from .sound import startSound
     3from . import const
     4from . import fs
    55
    66import threading
     
    6464        """Called when the playback of thee sound has finished (or failed)."""
    6565        if success is None:
    66             print "Failed to start sound", self._name
     66            print("Failed to start sound", self._name)
    6767        elif not success:
    68             print "Failed to finish sound", self._name
     68            print("Failed to finish sound", self._name)
    6969        with Sound._lock:           
    7070            self._playing -= 1
Note: See TracChangeset for help on using the changeset viewer.