Skip to content

Commit f338d81

Browse files
committed
debug: build is a tuple, don't show it on two lines
1 parent 92020e4 commit f338d81

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

coverage/control.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1403,7 +1403,7 @@ def plugin_info(plugins: list[Any]) -> list[str]:
14031403
("python", sys.version.replace("\n", "")),
14041404
("platform", platform.platform()),
14051405
("implementation", platform.python_implementation()),
1406-
("build", platform.python_build()),
1406+
("build", repr(platform.python_build())),
14071407
("gil_enabled", getattr(sys, "_is_gil_enabled", lambda: True)()),
14081408
("executable", sys.executable),
14091409
("pth_files", pth_files),

0 commit comments

Comments
 (0)