Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Updated exception handler file to resolve errors in pipeline
  • Loading branch information
git-thomasdolan committed Jan 11, 2022
commit 3471e7628811e7ba374b83b97b6238f63fa95570
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


def managementgroups_exception_handler(ex):
from azure.mgmt.managementgroups.models import ErrorResponseException
from azure.core.exceptions import HttpResponseError
if isinstance(ex, ErrorResponseException):
if ex.error.error:
raise CLIError(ex.error.error)
Expand Down