diff options
author | Alex Chavkin <achavkin@scclin013.flatironinstitute.org> | 2023-01-24 11:19:57 -0500 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2023-02-16 16:59:14 -0500 |
commit | 280e4425fde1d7a8b1105e4a07e42063cf3d9a51 (patch) | |
tree | edca73fe20c0b1c9b4607db2138e5f4d0fd9dc72 | |
parent | 2361fd666e44b179d2a53a929a3eb5bd0afd45c0 (diff) |
Double quotes to pass style check
-rw-r--r-- | paramiko/hostkeys.py | 2 |
1 files changed, 1 insertions, 1 deletions
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})" |