Fix the misspelling of "except"

Change-Id: Iabfe5a9b2a99e32ab975257fe5db2bd3b29d26bf
This commit is contained in:
lijunjie 2019-01-04 18:22:35 +08:00
parent 307f1318c4
commit 749f7107d0
1 changed files with 2 additions and 2 deletions

View File

@ -312,7 +312,7 @@ class Tiller(object):
name, release_name, namespace, labels, action_type, chart,
disable_hooks, values, timeout)
except Exception:
LOG.excpetion(
LOG.exception(
"Pre-action failure: could not perform rolling upgrade for "
"%(res_type)s %(res_name)s.", {
'res_type': action_type,
@ -329,7 +329,7 @@ class Tiller(object):
self.delete_resources(
action_type, labels, namespace, timeout=timeout)
except Exception:
LOG.excpetion(
LOG.exception(
"Pre-action failure: could not delete %(res_type)s "
"%(res_name)s.", {
'res_type': action_type,