Skip to content

Commit

Permalink
fix warn log message (#5422)
Browse files Browse the repository at this point in the history
  • Loading branch information
lcouzens authored Dec 9, 2024
1 parent 2862ffb commit c56449c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions koku/masu/util/aws/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,8 @@ def __init__(self, credentials):
if match:
for key, val in match.groupdict().items():
setattr(self, key, val)

LOG.warning(f"Invalid ARN: {self.arn}")
else:
LOG.warning(f"Invalid ARN: {self.arn}")

def __repr__(self):
"""Return the ARN itself."""
Expand Down

0 comments on commit c56449c

Please sign in to comment.