buildframework/helium/tests/data/pythonTest2.py
author timothy.murphy@nokia.com
Sun, 28 Feb 2010 23:17:56 +0200
branchfix
changeset 281 6125450a72c5
parent 1 be27ed110b50
permissions -rw-r--r--
fix: use proper hostplatform variable, now host attributes really aren't empty on windows recipes.

from optparse import OptionParser

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