From f5dfdcef42208c83b77b78bdb0da1e1234b8e947 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Mon, 31 Mar 2025 13:33:40 +0200 Subject: [PATCH] chore: fix double call log formatting --- playwright/_impl/_connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright/_impl/_connection.py b/playwright/_impl/_connection.py index 8433058ae..027daf69d 100644 --- a/playwright/_impl/_connection.py +++ b/playwright/_impl/_connection.py @@ -619,4 +619,4 @@ def format_call_log(log: Optional[List[str]]) -> str: return "" if len(list(filter(lambda x: x.strip(), log))) == 0: return "" - return "\nCall log:\n" + "\n - ".join(log) + "\n" + return "\nCall log:\n" + "\n".join(log) + "\n"