Skip to content

Commit

Permalink
Fix missing period from log message
Browse files Browse the repository at this point in the history
Consistency is key.

Co-authored-by: dav3r <david.redmin@trio.dhs.gov>
  • Loading branch information
mcdonnnj and dav3r committed Apr 7, 2021
1 parent 96fed19 commit 80ff8aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/manage_cyhy_ops/manageoperators.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def _update_cyhy_ops_users(self, username: str, remove: bool = False) -> int:
Type="SecureString",
Overwrite=True,
)
log_msg = f'{update_msg} in region "%s"'
log_msg = f'{update_msg} in region "%s".'
logging.info(log_msg, username, self.region)
except ClientError as err:
logging.error(
Expand Down

0 comments on commit 80ff8aa

Please sign in to comment.