From 280e4425fde1d7a8b1105e4a07e42063cf3d9a51 Mon Sep 17 00:00:00 2001 From: Alex Chavkin Date: Tue, 24 Jan 2023 11:19:57 -0500 Subject: Double quotes to pass style check --- paramiko/hostkeys.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paramiko/hostkeys.py b/paramiko/hostkeys.py index 7362c013..f9635159 100644 --- a/paramiko/hostkeys.py +++ b/paramiko/hostkeys.py @@ -338,7 +338,7 @@ class HostKeyEntry: :param str line: a line from an OpenSSH known_hosts file """ log = get_logger("paramiko.hostkeys") - fields = re.split(' |\t', line) + fields = re.split(" |\t", line) if len(fields) < 3: # Bad number of fields msg = "Not enough fields found in known_hosts in line {} ({!r})" -- cgit v1.2.1