Fix UltraVNC preconfigured command

This commit is contained in:
grossmj
2026-02-20 16:40:22 +08:00
parent c4deabc3fa
commit fb984e5e89

View File

@@ -180,7 +180,7 @@ if sys.platform.startswith("win"):
# Windows
PRECONFIGURED_VNC_CONSOLE_COMMANDS = {
'TightVNC (included with GNS3)': 'tvnviewer.exe {host}:{port}',
'UltraVNC': r'"{}\uvnc bvba\UltraVNC\vncviewer.exe" {{host}}:{{port}}'.format(program_files)
'UltraVNC': r'"{}\uvnc bvba\UltraVNC\vncviewer.exe" {{host}}:{{port}}'.format(program_files),
'SuperPutty': r'SuperPutty.exe -vnc {host}::{port}',
}