diff --git a/src/cloudwatch/modules/client/ec2getclient.py b/src/cloudwatch/modules/client/ec2getclient.py index f1530ef..238b088 100644 --- a/src/cloudwatch/modules/client/ec2getclient.py +++ b/src/cloudwatch/modules/client/ec2getclient.py @@ -54,7 +54,7 @@ def get_autoscaling_group(self, instanceId): ns={'ec2': 'http://ec2.amazonaws.com/doc/2016-11-15/'} return xmldoc.findall('ec2:tagSet/ec2:item[0]/ec2:value',ns)[0].text except Exception as e: - self._LOGGER.warning("Could not get the autoscalig group name using the following endpoint: '" + self.endpoint +"'. [Exception: " + str(e) + "]") + self._LOGGER.warning("Could not get the autoscaling group name using the following endpoint: '" + self.endpoint +"'. [Exception: " + str(e) + "]") self._LOGGER.warning("Request details: '" + request + "'") return "NONE"