Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion samcli/commands/bootstrap/exceptions.py
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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