1
0
mirror of https://git.yoctoproject.org/meta-arm synced 2026-06-07 03:04:27 +00:00

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

Signed-off-by: Ross Burton <ross.burton@arm.com>
This commit is contained in:
Ross Burton
2021-12-20 17:13:35 +00:00
committed by Jon Mason
parent 1ccccbf603
commit 7780374500
+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))