We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f65113 commit 06a2af3Copy full SHA for 06a2af3
netmiko/checkpoint/checkpoint_gaia_ssh.py
@@ -30,7 +30,7 @@ def command_echo_read(self, cmd: str, read_timeout: float) -> str:
30
"""Check Point clish double echoes the command (at least sometimes)"""
31
32
re_cmd = re.escape(cmd)
33
- pattern = f"{self.prompt_pattern}\s{re_cmd}"
+ pattern = rf"{self.prompt_pattern}\s{re_cmd}"
34
35
# Make sure you read until you detect the command echo (avoid getting out of sync)
36
new_data = self.read_until_pattern(
0 commit comments