From 13f20e64e97127817407da5c4b6c5a4b077409f0 Mon Sep 17 00:00:00 2001 From: david Date: Tue, 18 May 2021 14:08:22 +0200 Subject: [PATCH 1/2] Fix #1387 --- napalm/ios/ios.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/napalm/ios/ios.py b/napalm/ios/ios.py index f3dd84107..0ed9d7d73 100644 --- a/napalm/ios/ios.py +++ b/napalm/ios/ios.py @@ -3442,7 +3442,8 @@ def get_network_instances(self, name=""): # remove interfaces in the VRF from the default VRF for item in interfaces: - del instances["default"]["interfaces"]["interface"][item] + if item in instances["default"]["interfaces"]["interface"]: + del instances["default"]["interfaces"]["interface"][item] instances[vrf_name] = { "name": vrf_name, From 1bb3e9173934f0ccc79e2bcd4498f6080d7644e2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 May 2021 06:49:35 +0000 Subject: [PATCH 2/2] Bump coveralls from 3.0.1 to 3.1.0 Bumps [coveralls](https://github.com/TheKevJames/coveralls-python) from 3.0.1 to 3.1.0. - [Release notes](https://github.com/TheKevJames/coveralls-python/releases) - [Changelog](https://github.com/TheKevJames/coveralls-python/blob/master/CHANGELOG.md) - [Commits](https://github.com/TheKevJames/coveralls-python/compare/3.0.1...3.1.0) Signed-off-by: dependabot[bot] --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index c324d37a7..106e77768 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,5 +1,5 @@ black==21.5b1 -coveralls==3.0.1 +coveralls==3.1.0 ddt==1.4.2 flake8-import-order==0.18.1 pytest==5.4.3