Fix the spelling mistake

Here is an obvious misspelling : "proccess_type", which should be "process_type"
This may confuse others.

So I changed all the "proccess_type" to "process_type"

Change-Id: If9844b4141c030a41ce2ab8f9983b760bcd6a9ae
This commit is contained in:
Hangbo Zhao 2016-03-07 23:47:07 -08:00 committed by Witold Bedyk
parent 9983c5afbc
commit 19fbca0ba0
1 changed files with 3 additions and 3 deletions

View File

@ -77,9 +77,9 @@ def clean_exit(signum, frame=None):
sys.exit(signum)
def start_process(proccess_type, config):
log.info("start process: {}".format(proccess_type))
p = proccess_type(config)
def start_process(process_type, config):
log.info("start process: {}".format(process_type))
p = process_type(config)
p.run()