From fb984e5e89c09657ec343e79e85451344bb97cd8 Mon Sep 17 00:00:00 2001 From: grossmj Date: Fri, 20 Feb 2026 16:40:22 +0800 Subject: [PATCH] Fix UltraVNC preconfigured command --- gns3/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3/settings.py b/gns3/settings.py index f90427e2..adc24d73 100644 --- a/gns3/settings.py +++ b/gns3/settings.py @@ -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}', }