buildframework/helium/tests/data/pythonTest2.py
author timothy.murphy@nokia.com
Sun, 28 Feb 2010 22:37:15 +0000
branchfix
changeset 282 99ac65572b14
parent 1 be27ed110b50
permissions -rw-r--r--
fix: use gethostname() to set host attribute as this works on a cluster whereas reading the COMPUTERNAME env var doesn't.

from optparse import OptionParser

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