diff options
author | Daniil Baturin <daniil@baturin.org> | 2025-06-09 12:32:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-09 12:32:12 +0100 |
commit | a8547c0d338849347a93dca5983d37f929b989e0 (patch) | |
tree | ee27928e2e3196efe98dd0a05cda84bc35d32cf6 /plugins/cliconf/vyos.py | |
parent | f02bc8b2af6de47962e3670e719d756df0cba029 (diff) | |
download | vyos.vyos-a8547c0d338849347a93dca5983d37f929b989e0.tar.gz vyos.vyos-a8547c0d338849347a93dca5983d37f929b989e0.zip |
Revert "T7320: Fixed compatibility with Paramiko by removing all "null" bytes…"
This reverts commit f02bc8b2af6de47962e3670e719d756df0cba029.
Diffstat (limited to 'plugins/cliconf/vyos.py')
-rw-r--r-- | plugins/cliconf/vyos.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/cliconf/vyos.py b/plugins/cliconf/vyos.py index 8cbafb1d..5beffaa1 100644 --- a/plugins/cliconf/vyos.py +++ b/plugins/cliconf/vyos.py @@ -138,7 +138,6 @@ class Cliconf(CliconfBase): requests.append(cmd["command"]) out = self.get("compare") out = to_text(out, errors="surrogate_or_strict") - out = out.replace("\u0000", "") diff_config = out if not out.startswith("No changes") else None if diff_config: |