From 06dc2489d7bd358bc6a2a312be1a7bf331ccf20b Mon Sep 17 00:00:00 2001 From: Manu <3916435+m3nu@users.noreply.github.com> Date: Wed, 29 Sep 2021 17:10:37 +0400 Subject: [PATCH] Add new SSH key error (#1070) --- src/vorta/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/vorta/utils.py b/src/vorta/utils.py index ca0d5f40..2ba95803 100644 --- a/src/vorta/utils.py +++ b/src/vorta/utils.py @@ -141,7 +141,8 @@ def get_private_keys(): 'fingerprint': parsed_key.get_fingerprint().hex() } available_private_keys.append(key_details) - except (SSHException, UnicodeDecodeError, IsADirectoryError, IndexError, ValueError, PermissionError): + except (SSHException, UnicodeDecodeError, IsADirectoryError, IndexError, ValueError, + PermissionError, NotImplementedError): continue except OSError as e: if e.errno == errno.ENXIO: