def check_run_id(run_id):
'''
@summary: Validate command line parameter 'run_id'
@param run_id: Unique string identifying current run
@return: True if input is correct
'''
ret_code = True
if ((run_id is None) or (len(run_id) == 0)):
print 'ERROR: no run_id specified'
ret_code = False
return ret_code
#---------------------------------------------------------------------
评论列表
文章目录