Skip to content

Commit 341448a

Browse files
authored
Merge pull request #2063 from napalm-automation/fix-pr-1972-2013
Follow up after mgering PR #1972 and #2013
2 parents 29c5ea0 + ecceaf8 commit 341448a

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

docs/support/index.rst

+2-3
Original file line numberDiff line numberDiff line change
@@ -138,10 +138,9 @@ ____________________________________
138138
* :code:`use_keys` (ios, iosxr, nxos_ssh) - Paramiko argument, enable searching for discoverable private key files in ``~/.ssh/`` (default: ``False``).
139139
* :code:`eos_autoComplete` (eos) - Allows to set `autoComplete` when running commands. (default: ``None`` equivalent to ``False``)
140140
* :code:`config_encoding` (iosxr_netconf) - Set encoding to either ``"xml"`` or ``"cli"`` for configuration load methods. (default: ``"cli"``)
141-
* :code:`eos_fn0039_config` (eos) - Transform old style configuration to the new style, available beginning with EOS release 4.23.0, as per FN 0039. Beware
142-
that enabling this option will change the configuration you're loading through NAPALM. Default: ``False`` (won't change your configuration commands).
143-
.. versionadded:: 3.0.1
144141
* :code:`force_cfg_session_invalid` (eos) - Force the config_session to be cleared in case of issues, like `discard_config` failure. (default: ``False``)
142+
* :code:`huge_tree` (junos) - Pass on this flag on Juniper devices when
143+
returning a large XML document. (default: ``False``)
145144

146145
The transport argument
147146
______________________

napalm/nxos/nxos.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,11 @@ def _disable_confirmation(self) -> None:
603603
self._send_command_list(["terminal dont-ask"])
604604

605605
def get_config(
606-
self, retrieve: str = "all", full: bool = False, sanitized: bool = False, format: str = "text"
606+
self,
607+
retrieve: str = "all",
608+
full: bool = False,
609+
sanitized: bool = False,
610+
format: str = "text",
607611
) -> models.ConfigDict:
608612
# NX-OS adds some extra, unneeded lines that should be filtered.
609613
filter_strings = [

0 commit comments

Comments
 (0)