Skip to content
This repository was archived by the owner on Mar 13, 2026. It is now read-only.

Commit 9036220

Browse files
authored
Merge pull request zappa#957 from DPS0340/fix/cli-github-url
Fix: cli zappa github url
2 parents 605e1eb + d318a77 commit 9036220

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

zappa/cli.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,7 @@ def deploy(self, source_zip=None):
715715
click.style("Exception reported by AWS:", bold=True) + format(ce) + '\n' +
716716
"To fix this, see here: " +
717717
click.style(
718-
"https://github.com/Miserlou/Zappa#custom-aws-iam-roles-and-policies-for-deployment",
718+
"https://github.com/Zappa/Zappa#custom-aws-iam-roles-and-policies-for-deployment",
719719
bold=True)
720720
+ '\n')
721721

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

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

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

0 commit comments

Comments
 (0)