Skip to content

Commit 86b3295

Browse files
committed
migrate from add_logs to want_logs_content
1 parent 8b8ae66 commit 86b3295

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

buildbot_nix/buildbot_nix/nix_status_generator.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,20 @@ def __init__(
103103
builders: None | list[str] = None,
104104
schedulers: None | list[str] = None,
105105
branches: None | list[str] = None,
106-
add_logs: bool | list[str] = False,
106+
want_logs_content: bool = False,
107107
add_patch: bool = False,
108108
start_formatter: None | MessageFormatterBase = None,
109109
end_formatter: None | MessageFormatterBase = None,
110110
) -> None:
111111
super().__init__(
112-
"all", tags, builders, schedulers, branches, None, add_logs, add_patch
112+
"all",
113+
tags,
114+
builders,
115+
schedulers,
116+
branches,
117+
None,
118+
want_logs_content,
119+
add_patch,
113120
)
114121

115122
self.start_formatter = start_formatter or MessageFormatterRenderable(

0 commit comments

Comments
 (0)