Skip to content
This repository has been archived by the owner on Sep 3, 2022. It is now read-only.

Fix string format error when creating SSH tunnel in debug mode #2179

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/cli/commands/connect.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down