#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys

if sys.hexversion < 0x020400f0:
    sys.stdout.write("%s needs a version >= 2.4 of python installed\n" % sys.argv[0])
    sys.exit(1)

from loemu.Config import config
from loemu.Loemu import MainWindow
from loemu.SimpleGladeApp import bindtextdomain

bindtextdomain(config.app_name,config.get_dir('locale'))

config.load()
w = MainWindow()
w.run()
sys.exit(0)
