Skip to content

Commit

Permalink
fixed bug with zappa manage commands
Browse files Browse the repository at this point in the history
  • Loading branch information
ghostmaster-ai committed Sep 25, 2021
1 parent 44a6108 commit 06f547b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion zappa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
)
raise RuntimeError(err_msg)

__version__ = "0.53.3"
__version__ = "0.53.4"
2 changes: 1 addition & 1 deletion zappa/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -2446,7 +2446,7 @@ def check_for_update(self):
Print a warning if there's a new Zappa version available.
"""
try:
version = pkg_resources.require("zappa")[0].version
version = pkg_resources.require("zappa2")[0].version
updateable = check_new_version_available(version)
if updateable:
click.echo(
Expand Down

0 comments on commit 06f547b

Please sign in to comment.