diff options
author | Maxim Devaev <[email protected]> | 2022-07-17 15:47:58 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2022-07-17 15:47:58 +0300 |
commit | 582415344c0184a18a8efe2ffde6e83bc49d0a17 (patch) | |
tree | f79d2f10efe8ab2378f41a54fe64af5fdb307665 /kvmd/apps/vnc/rfb/__init__.py | |
parent | 136b756e005061424a457b7a56f8c69342a0753e (diff) |
spell
Diffstat (limited to 'kvmd/apps/vnc/rfb/__init__.py')
-rw-r--r-- | kvmd/apps/vnc/rfb/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/apps/vnc/rfb/__init__.py b/kvmd/apps/vnc/rfb/__init__.py index d0b4da37..fa4dfd34 100644 --- a/kvmd/apps/vnc/rfb/__init__.py +++ b/kvmd/apps/vnc/rfb/__init__.py @@ -287,7 +287,7 @@ class RfbClient(RfbClientStream): # pylint: disable=too-many-instance-attribute await self._write_struct("VeNCrypt auth types list", "B" + "L" * len(auth_types), len(auth_types), *auth_types) - auth_type = await self._read_number("selected VeNCrype auth type", "L") + auth_type = await self._read_number("selected VeNCrypt auth type", "L") if auth_type not in auth_types: raise RfbError(f"Invalid VeNCrypt auth type: {auth_type}") |