This commit is contained in:
Bin Ma 2020-04-17 07:11:49 +08:00 коммит произвёл GitHub
Родитель aeb73048cc
Коммит ca18f5a4e1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -124,7 +124,7 @@ Consider an `exists` method. The method **must** distinguish between the service
# Yes
try:
exists = client.resource_exists(name):
if not resource:
if not exists:
print("The resource doesn't exist...")
except azure.core.errors.ServiceRequestError:
print("We don't know if the resource exists - so it was appropriate to throw an exception!")