#!/usr/bin/env python3.1 # # Copyright (c) 2008-2009 The Jira2Trac Project. # See LICENSE.txt for details. ### Taken from the Twisted Preamble # This makes sure that users don't have to set up their environment # specially in order to run these programs from bin/. import sys, os sys.path.insert(0, os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]), os.pardir, os.pardir))) sys.path.insert(0, os.path.abspath(os.getcwd())) ### end of preamble from jira2trac.scripts import run run()