Fix bad ref to AnsibleConnectionError -> AnsibleConnectionFailure (#22838)
This commit is contained in:
parent
78de05e58d
commit
dfec69b9a1
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ class Connection(ConnectionBase):
|
|||
key_filename = os.path.expanduser(self._play_context.private_key_file)
|
||||
|
||||
if not self._network_os:
|
||||
raise AnsibleConnectionError('network_os must be set for netconf connections')
|
||||
raise AnsibleConnectionFailure('network_os must be set for netconf connections')
|
||||
|
||||
try:
|
||||
self._manager = manager.connect(
|
||||
|
|
Loading…
Reference in a new issue