From 749f7107d0bca950a3895ca2ee6de970dc056b32 Mon Sep 17 00:00:00 2001 From: lijunjie Date: Fri, 4 Jan 2019 18:22:35 +0800 Subject: [PATCH] Fix the misspelling of "except" Change-Id: Iabfe5a9b2a99e32ab975257fe5db2bd3b29d26bf --- armada/handlers/tiller.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/armada/handlers/tiller.py b/armada/handlers/tiller.py index 02b7bcd1..0b7fc9bf 100644 --- a/armada/handlers/tiller.py +++ b/armada/handlers/tiller.py @@ -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,