#!/usr/local/bin/python2.7
# This is just a wrapper script for the main Python program
# This script is part of Rubber, which is covered by the GPL license.
# (c) Emmanuel Beffara, 2002
import sys
sys.path.append("/usr/local/lib/python2.7/site-packages/rubber")
try:
	from rubber.cmd_info import Main
	Main()(sys.argv[1:])
except ImportError:
	print "I cannot find the program's modules, I am not installed correctly."
	sys.exit(1)
