Skip to content

Commit

Permalink
Fix attribute issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ktbyers committed Jul 8, 2024
1 parent 4d7fcc3 commit 3b34a1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netmiko/mikrotik/mikrotik_ssh.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def special_login_handler(self, delay_factor: float = 1.0) -> None:
data = self.read_until_pattern(pattern=combined_pattern, re_flags=re.I)
if no_license_message in data:
# Handle "no license" message
self.write_channel(self.default_enter) # type: ignore
self.write_channel(self.RETURN)
self.read_until_pattern(pattern=self.prompt_pattern)
elif license_prompt in data:
# Handle software license prompt
Expand Down

0 comments on commit 3b34a1e

Please sign in to comment.