diff options
author | Devaev Maxim <[email protected]> | 2020-05-28 11:03:49 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-05-28 11:03:49 +0300 |
commit | 1c93f6a562d1c2106d148cebb128397989fb84fd (patch) | |
tree | 8065e45b9a07004b5823d8f57a3272796aeb2704 /kvmd/apps/vnc | |
parent | fbdfb009a1f752236eeacc8c2528167a64d5d3a8 (diff) |
refactoring
Diffstat (limited to 'kvmd/apps/vnc')
-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( |