From: Ross Brattain Date: Sun, 13 Aug 2017 19:09:53 +0000 (-0700) Subject: cli: typo, s/dispath/dispatch/g X-Git-Tag: opnfv-5.0.RC1~283^2 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F11%2F39211%2F1;p=yardstick.git cli: typo, s/dispath/dispatch/g Change-Id: I3df6bc606f2ac78baf611aee22b9247f6f9d5136 Signed-off-by: Ross Brattain --- diff --git a/yardstick/cmd/cli.py b/yardstick/cmd/cli.py index d2c49e89b..67ce11451 100644 --- a/yardstick/cmd/cli.py +++ b/yardstick/cmd/cli.py @@ -133,13 +133,13 @@ class YardstickCLI(): # pragma: no cover if CONF.debug: _LOG_STREAM_HDLR.setLevel(logging.DEBUG) - def _dispath_func_notask(self): + def _dispatch_func_notask(self): # dispatch to category parser func = CONF.category.func func(CONF.category) - def _dispath_func_task(self, task_id): + def _dispatch_func_task(self, task_id): # dispatch to category parser func = CONF.category.func @@ -159,7 +159,7 @@ class YardstickCLI(): # pragma: no cover self._handle_global_opts() - self._dispath_func_notask() + self._dispatch_func_notask() finally: self._clear_config_opts() @@ -172,6 +172,6 @@ class YardstickCLI(): # pragma: no cover self._handle_global_opts() - self._dispath_func_task(task_id) + self._dispatch_func_task(task_id) finally: self._clear_config_opts()