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/mlx.py

    r800 r919  
    11
    2 from config import Config
    3 from i18n import setLanguage
    4 from sound import preInitializeSound, initializeSound, finalizeSound
    5 from util import secondaryInstallation
    6 from const import VERSION
    7 from watchdog import Watchdog
     2from .config import Config
     3from .i18n import setLanguage
     4from .sound import preInitializeSound, initializeSound, finalizeSound
     5from .util import secondaryInstallation
     6from .const import VERSION
     7from .watchdog import Watchdog
    88
    99import os
     
    6060def main():
    6161    """The main operation of the program."""
    62     from singleton import SingleInstance, raiseCallbackWrapper
     62    from .singleton import SingleInstance, raiseCallbackWrapper
    6363
    6464    global instance
     
    8686    sys.stderr = StdIOHandler(gui)
    8787
    88     print "MAVA Logger X " + VERSION + " debug log"
    89     print "The initial configuration:"
     88    print("MAVA Logger X " + VERSION + " debug log")
     89    print("The initial configuration:")
    9090    config.log()
    9191
Note: See TracChangeset for help on using the changeset viewer.