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:
+1
-1
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user