Skip to content

Commit

Permalink
Fixing variable name bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ktbyers committed May 14, 2020
1 parent 0b62d52 commit 1639c31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion napalm/nxos_ssh/nxos_ssh.py
Expand Up @@ -506,7 +506,7 @@ def is_alive(self):
return {"is_alive": False}
else:
# Try sending ASCII null byte to maintain the connection alive
self._send_command(null, command_verify=False)
self._send_command(null, cmd_verify=False)
except (socket.error, EOFError):
# If unable to send, we can tell for sure that the connection is unusable,
# hence return False.
Expand Down

0 comments on commit 1639c31

Please sign in to comment.