From 5920774ada13e3f265913d17e6f44d56cb23ba26 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Tue, 26 Apr 2022 13:33:55 +0100 Subject: [PATCH] runfvp: don't use f-string when there's no expressions Signed-off-by: Ross Burton Signed-off-by: Jon Mason --- scripts/runfvp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/runfvp b/scripts/runfvp index 77668248..fb334795 100755 --- a/scripts/runfvp +++ b/scripts/runfvp @@ -169,7 +169,7 @@ async def start_fvp(cli, console_cb): # Look for serial connections opening if console_cb: - m = re.match(fr"^(\S+): Listening for serial connection on port (\d+)$", line) + m = re.match(r"^(\S+): Listening for serial connection on port (\d+)$", line) if m: terminal = m.group(1) port = int(m.group(2))