From bc4d6ee23b3aebbe4e4836952eadc6c7d5ace563 Mon Sep 17 00:00:00 2001 From: pbrose Date: Tue, 25 May 2021 11:08:31 +0200 Subject: [PATCH] Fix string format error when creating SSH tunnel in debug mode --- tools/cli/commands/connect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cli/commands/connect.py b/tools/cli/commands/connect.py index 9b77af885..e5c69e391 100644 --- a/tools/cli/commands/connect.py +++ b/tools/cli/commands/connect.py @@ -207,7 +207,7 @@ def create_tunnel(): KeyboardInterrupt: When the end user kills the connection """ if utils.print_debug_messages(args): - print('Connecting to {0} via SSH').format(instance) + print('Connecting to {0} via SSH'.format(instance)) cmd = ['ssh'] if args.zone: