buildframework/helium/tests/data/pythonTest2.py
author Jon Chatten
Fri, 26 Feb 2010 14:51:57 +0000
branchfix
changeset 276 e80c44f576df
parent 1 be27ed110b50
permissions -rw-r--r--
release note: SF Bug 1912 - Raptor should take python from the path [if not set with SBS_PYTHON or bundled with Raptor]

from optparse import OptionParser

def main():
    parser = OptionParser(usage="%prog VERSION")
    opts, args = parser.parse_args()
    input = args[0]
    print input
    
main()