diff options
author | Devaev Maxim <[email protected]> | 2020-07-23 05:51:16 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-07-23 05:51:16 +0300 |
commit | 37c2f9391c4129114702f653270049d0ad67bc90 (patch) | |
tree | 498f9b742a687fbf0eacee4289e0b7ff2d1a14d2 | |
parent | 360ff0090346fe2ead3e42d7bc39391325f8a2d3 (diff) |
fixed f-string
-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 80c08028..96e70895 100644 --- a/kvmd/apps/vnc/rfb/__init__.py +++ b/kvmd/apps/vnc/rfb/__init__.py @@ -315,7 +315,7 @@ class RfbClient(RfbClientStream): # pylint: disable=too-many-instance-attribute await self.__handshake_security_send_result( allow=bool(user), - allow_msg="VNCAuth access granted for user {user!r}", + allow_msg=f"VNCAuth access granted for user {user!r}", deny_msg="VNCAuth access denied (user not found)", deny_reason="Invalid password", ) |