diff options
Diffstat (limited to 'kvmd/apps/vnc/__init__.py')
-rw-r--r-- | kvmd/apps/vnc/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kvmd/apps/vnc/__init__.py b/kvmd/apps/vnc/__init__.py index a88a3966..aaf67740 100644 --- a/kvmd/apps/vnc/__init__.py +++ b/kvmd/apps/vnc/__init__.py @@ -26,7 +26,7 @@ from typing import Optional from ...clients.kvmd import KvmdClient from ...clients.streamer import StreamerClient -from ... import make_user_agent +from ... import htclient from .. import init @@ -42,7 +42,7 @@ def main(argv: Optional[List[str]]=None) -> None: argv=argv, )[2].vnc - user_agent = make_user_agent("KVMD-VNC") + user_agent = htclient.make_user_agent("KVMD-VNC") # pylint: disable=protected-access VncServer( |