buildframework/helium/tests/data/pythonTest2.py
author timothy.murphy@nokia.com
Mon, 01 Mar 2010 17:45:23 +0000
changeset 293 5bbbb5fd2a8a
parent 1 be27ed110b50
permissions -rw-r--r--
fix: remove OSTv2 dependency so we will still work with the old one

from optparse import OptionParser

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