File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
buildbot_nix/buildbot_nix Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -103,20 +103,20 @@ def __init__(
103
103
builders : None | list [str ] = None ,
104
104
schedulers : None | list [str ] = None ,
105
105
branches : None | list [str ] = None ,
106
- want_logs_content : bool = False ,
106
+ add_logs : bool | None = None ,
107
107
add_patch : bool = False ,
108
108
start_formatter : None | MessageFormatterBase = None ,
109
109
end_formatter : None | MessageFormatterBase = None ,
110
110
) -> None :
111
111
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 ,
120
120
)
121
121
122
122
self .start_formatter = start_formatter or MessageFormatterRenderable (
You can’t perform that action at this time.
0 commit comments