Skip to content

Commit 375bf03

Browse files
authored
Merge pull request #81 from getslash/issue_738
In session_start, report all session warnings that were there before …
2 parents 395b2eb + 276208a commit 375bf03

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

backslash/contrib/slash_plugin.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,8 @@ def _notify_session_start(self):
158158
metadata=metadata,
159159
**self._get_extra_session_start_kwargs()
160160
)
161-
161+
for warning in slash.context.session.warnings:
162+
self.warning_added(warning)
162163
for label in self.current_config.session_labels:
163164
self.client.api.call.add_label(session_id=self.session.id, label=label)
164165

0 commit comments

Comments
 (0)