From a4ba574880dbfb199eaf54ddccff4565b30d3a7d Mon Sep 17 00:00:00 2001 From: Hanoh Haim Date: Mon, 28 Dec 2015 13:55:13 +0200 Subject: minor script fix --- linux_dpdk/cov.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'linux_dpdk/cov.py') diff --git a/linux_dpdk/cov.py b/linux_dpdk/cov.py index 6d23842c..e3177d5f 100644 --- a/linux_dpdk/cov.py +++ b/linux_dpdk/cov.py @@ -94,10 +94,12 @@ def upload (): ver=get_build_num_dis () cmd='curl --form token=fRIZZCAGD9TnkSiuxXiEAQ --form email='+cov_driver.user_name+'@cisco.com --form file=@./'+COV_FILE_OUT+' --form version="'+ver+'" --form description="'+ver+'" https://scan.coverity.com/builds?project=cisco-system-traffic-generator%2Ftrex-core' run_cmd(cmd); + print "You should get an email with the results" + print "or visit http://scan.coverity.com/projects/cisco-system-traffic-generator-trex-core?tab=overview" def check_env (env,err): if os.environ.has_key(env) == False : - s= "ERROR you should define %s, %" % (env,err) + s= "ERROR you should define %s, %s" % (env,err) raise Exception(s); -- cgit 1.2.3-korg