Skip to content

Commit 3a1aadd

Browse files
committed
FIX: replaced custom enable with working self.enable()
1 parent c76f03a commit 3a1aadd

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

netmiko/lancom/lancom_lcossx5.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,7 @@ def session_preparation(self) -> None:
1010
offers inconsistent command options
1111
"""
1212
self._test_channel_read()
13-
super().send_command_timing(
14-
"enable",
15-
strip_prompt=False,
16-
strip_command=False,
17-
)
13+
self.enable(enable_pattern=r"#")
1814
super().set_base_prompt()
1915
super().disable_paging()
2016
self.clear_buffer()

0 commit comments

Comments
 (0)