From 6fc35b96138454f2aadd38eaa41a283c756967e6 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Wed, 24 May 2023 15:08:22 +0100 Subject: [PATCH] arm/lib/fvp: remove redundant trailing commas These were left behind in a refactor. Signed-off-by: Ross Burton Signed-off-by: Jon Mason --- meta-arm/lib/fvp/terminal.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta-arm/lib/fvp/terminal.py b/meta-arm/lib/fvp/terminal.py index 6f408153..243d4fb1 100644 --- a/meta-arm/lib/fvp/terminal.py +++ b/meta-arm/lib/fvp/terminal.py @@ -53,7 +53,7 @@ class Terminals: terminals = Terminals() # TODO: option to switch between telnet and netcat connect_command = "telnet localhost %port" -terminals.add_terminal(2, "tmux", f"tmux new-window -n \"%title\" \"{connect_command}\""), -terminals.add_terminal(2, "gnome-terminal", f"gnome-terminal --window --title \"%title\" --command \"{connect_command}\""), -terminals.add_terminal(1, "xterm", f"xterm -title \"%title\" -e {connect_command}"), +terminals.add_terminal(2, "tmux", f"tmux new-window -n \"%title\" \"{connect_command}\"") +terminals.add_terminal(2, "gnome-terminal", f"gnome-terminal --window --title \"%title\" --command \"{connect_command}\"") +terminals.add_terminal(1, "xterm", f"xterm -title \"%title\" -e {connect_command}") terminals.add_terminal(0, "none", None)