Skip to content
Merged
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
8 changes: 4 additions & 4 deletions samcli/cli/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
]

DEPRECATION_NOTICE = (
"Warning : AWS SAM CLI will no longer support "
"installations on Python 2.7 starting on October 1st, 2019."
" Install AWS SAM CLI via https://docs.aws.amazon.com/serverless-application-model/"
"Deprecated : AWS SAM CLI no longer supports "
"installations on Python 2.7. "
"Install AWS SAM CLI via https://docs.aws.amazon.com/serverless-application-model/"
"latest/developerguide/serverless-sam-cli-install.html for continued support with new versions. \n"
)

Expand Down Expand Up @@ -70,7 +70,7 @@ def __init__(self, cmd_packages=None, *args, **kwargs):
self._commands = BaseCommand._set_commands(cmd_packages)

if sys.version_info.major == 2:
click.secho(DEPRECATION_NOTICE, fg="yellow", err=True)
click.secho(DEPRECATION_NOTICE, fg="red", err=True)

@staticmethod
def _set_commands(package_names):
Expand Down