Having trouble submitting job tags in python api with qube 6.5
is it possible to fill these tags out through the python API?
here's some sample code
job = qb.Job()
job['name'] = 'job tag test'
job['prototype'] = 'cmdline'
job['package'] = {'cmdline' : 'dir L:\\' }
job['show'] = 'test_show'
job['shot'] = 'test_shot'
job['custom1'] = 'elite job dataz'
sub = qb.submit(job)
job = qb.jobinfo(id=sub[0]['id'])
print job[0].get('show')
this snippet of code returns None
same thing happened when i tried
job['prod_show'] = 'test_show'