Skip to content

Commit

Permalink
hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
eamonnfaherty committed Jul 8, 2020
1 parent e408a17 commit 26c3872
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion betterboto/cloudformation.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def create_or_update(self, **kwargs):
raise e
else:
logger.info('Updating: {}'.format(stack_name))
change_set_name = f"change-{str(time.time())}"
change_set_name = f"change-{str(time.time())}".replace('.','')
self.create_change_set(
ChangeSetName=change_set_name,
ChangeSetType="UPDATE",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setuptools.setup(
name="better-boto",
version="0.28.1",
version="0.28.2",
author="Eamonn Faherty",
author_email="python-packages@designandsolve.co.uk",
description="Helpers to make using boto3 more enjoyable",
Expand Down

0 comments on commit 26c3872

Please sign in to comment.