diff options
author | liyin <liyin11@huawei.com> | 2017-01-10 19:42:20 +0800 |
---|---|---|
committer | Ace Lee <liyin11@huawei.com> | 2017-01-12 08:38:10 +0000 |
commit | 08b12e7a7f0b5971282c371b0d0b9320030f3874 (patch) | |
tree | b16cabd80530ddebe5509d244ed1a6ce0e506001 /utils/dashboard/process_data.py | |
parent | 90aee324d326a25ba79b83bf8aceb3bcf3feea9b (diff) |
Modify utils/ code into PEP8 style
JIRA: BOTTLENECK-100
Modify all the code in the utils folder into PEP8 style.
Using more standard way to realize our function.
Change-Id: I965c507390adcb4404d33710f783b22241542890
Signed-off-by: liyin <liyin11@huawei.com>
Diffstat (limited to 'utils/dashboard/process_data.py')
-rw-r--r-- | utils/dashboard/process_data.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/dashboard/process_data.py b/utils/dashboard/process_data.py index e71a1e82..6ca6ee1e 100644 --- a/utils/dashboard/process_data.py +++ b/utils/dashboard/process_data.py @@ -8,14 +8,14 @@ ############################################################################## -import subprocess as subp import sys from rubbos_collector import RubbosCollector from uploader import Uploader def printUsage(): - print "Usage: python process_data.py required_params(**) optional_params([])" + print ("Usage: python process_data.py required_params(**)" + " optional_params([])") print " ** -i|--input input_data_dir" print " ** -s|--suite suite_name" print " ** -c|--conf conf_file" |