Skip to content

Commit 8fed8c3

Browse files
committed
drop deprecated wants_logs_content argument
1 parent 28e1a3a commit 8fed8c3

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

buildbot_nix/buildbot_nix/nix_status_generator.py

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

122122
self.start_formatter = start_formatter or MessageFormatterRenderable(

0 commit comments

Comments
 (0)