Skip to content

Commit

Permalink
fix: samconfig.toml links in sam deploy --guided (#1588)
Browse files Browse the repository at this point in the history
  • Loading branch information
sriram-mv committed Nov 23, 2019
1 parent ee13133 commit 33c9b7f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion samcli/commands/bootstrap/exceptions.py
Expand Up @@ -7,5 +7,5 @@
class ManagedStackError(UserException):
def __init__(self, ex):
self.ex = ex
message_fmt = f"\nFailed to create managed resources: {ex}"
message_fmt = f"Failed to create managed resources: {ex}"
super(ManagedStackError, self).__init__(message=message_fmt.format(ex=self.ex))
6 changes: 5 additions & 1 deletion samcli/commands/deploy/command.py
Expand Up @@ -436,7 +436,11 @@ def save_config(template_file, parameter_overrides, **kwargs):
click.echo(f"\n\tSaved arguments to config file")
click.echo("\tRunning 'sam deploy' for future deployments will use the parameters saved above.")
click.echo("\tThe above parameters can be changed by modifying samconfig.toml")
click.echo("\tLearn more about samconfig.toml syntax http://url")
click.echo(
"\tLearn more about samconfig.toml syntax at "
"\n\thttps://docs.aws.amazon.com/serverless-application-model/latest/"
"developerguide/serverless-sam-cli-config.html"
)


def get_config_ctx(template_file):
Expand Down

0 comments on commit 33c9b7f

Please sign in to comment.