Skip to content

Commit

Permalink
Merge pull request #957 from DPS0340/fix/cli-github-url
Browse files Browse the repository at this point in the history
Fix: cli zappa github url
  • Loading branch information
jneves authored Apr 5, 2021
2 parents 605e1eb + d318a77 commit 9036220
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions zappa/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,7 @@ def deploy(self, source_zip=None):
click.style("Exception reported by AWS:", bold=True) + format(ce) + '\n' +
"To fix this, see here: " +
click.style(
"https://github.com/Miserlou/Zappa#custom-aws-iam-roles-and-policies-for-deployment",
"https://github.com/Zappa/Zappa#custom-aws-iam-roles-and-policies-for-deployment",
bold=True)
+ '\n')

Expand Down Expand Up @@ -902,7 +902,7 @@ def update(self, source_zip=None, no_upload=False):
click.echo("You may " + click.style("lack the necessary AWS permissions", bold=True) +
" to automatically manage a Zappa execution role.")
click.echo("To fix this, see here: " +
click.style("https://github.com/Miserlou/Zappa#custom-aws-iam-roles-and-policies-for-deployment",
click.style("https://github.com/Zappa/Zappa#custom-aws-iam-roles-and-policies-for-deployment",
bold=True))
sys.exit(-1)

Expand Down Expand Up @@ -1797,7 +1797,7 @@ def init(self, settings_file="zappa_settings.json"):
click.echo(click.style("\t$ zappa update %s" % env, bold=True))

click.echo("\nTo learn more, check out our project page on " + click.style("GitHub", bold=True) +
" here: " + click.style("https://github.com/Miserlou/Zappa", fg="cyan", bold=True))
" here: " + click.style("https://github.com/Zappa/Zappa", fg="cyan", bold=True))
click.echo("and stop by our " + click.style("Slack", bold=True) + " channel here: " +
click.style("https://zappateam.slack.com", fg="cyan", bold=True))
click.echo("\nEnjoy!,")
Expand Down Expand Up @@ -1997,7 +1997,7 @@ def check_for_update(self):
" A new version of " + click.style("Zappa", bold=True) + " is available!")
click.echo("Upgrade with: " + click.style("pip install zappa --upgrade", bold=True))
click.echo("Visit the project page on GitHub to see the latest changes: " +
click.style("https://github.com/Miserlou/Zappa", bold=True))
click.style("https://github.com/Zappa/Zappa", bold=True))
except Exception as e: # pragma: no cover
print(e)
return
Expand Down Expand Up @@ -2749,7 +2749,7 @@ def shamelessly_promote():
"? Found a " + click.style("bug", fg='green', bold=True) +
"? Let us " + click.style("know", fg='green', bold=True) + "! :D")
click.echo("File bug reports on " + click.style("GitHub", bold=True) + " here: "
+ click.style("https://github.com/Miserlou/Zappa", fg='cyan', bold=True))
+ click.style("https://github.com/Zappa/Zappa", fg='cyan', bold=True))
click.echo("And join our " + click.style("Slack", bold=True) + " channel here: "
+ click.style("https://zappateam.slack.com", fg='cyan', bold=True))
click.echo("Love!,")
Expand Down

0 comments on commit 9036220

Please sign in to comment.