docs: fix simple typo, satsify -> satisfy (#16389)

There is a small typo in src/azure-cli/azure/cli/command_modules/acs/custom.py.

Should read `satisfy` rather than `satsify`.
This commit is contained in:
Tim Gates 2020-12-31 02:44:02 +11:00 коммит произвёл GitHub
Родитель 255786093e
Коммит 269954fdbb
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -3572,7 +3572,7 @@ def _ensure_service_principal(cli_ctx,
def _create_client_secret():
# Add a special character to satsify AAD SP secret requirements
# Add a special character to satisfy AAD SP secret requirements
special_char = '$'
client_secret = binascii.b2a_hex(os.urandom(10)).decode('utf-8') + special_char
return client_secret