1
0
mirror of https://git.yoctoproject.org/meta-arm synced 2026-07-16 03:47:19 +00:00

runfvp: don't use f-string when there's no expressions

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Jon Mason <jon.mason@arm.com>
This commit is contained in:
Ross Burton
2022-04-26 13:33:55 +01:00
committed by Jon Mason
parent 55453024ee
commit 5920774ada
+1 -1
View File
@@ -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))