#!/usr/bin/env python

# Force Python to ignore the current directory when loading the
# first component of the import path
import sys, imp
module_info = imp.find_module('Ft', filter(None, sys.path))
imp.load_module('Ft', *module_info)

from Ft.Xml.Xslt._4xslt import XsltCommandLineApp
XsltCommandLineApp().run()
