| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 05f41cd commit d3bd4b4
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -375,7 +375,10 @@ def HasRun(self, output): | |||
| 375 | 375 | ||
| 376 | 376 | if output.diagnostic: | |
| 377 | 377 | self.severity = 'ok' | |
| 378 | - self.traceback = output.diagnostic | ||
| 378 | + if isinstance(output.diagnostic, list): | ||
| 379 | + self.traceback = '\n'.join(output.diagnostic) | ||
| 380 | + else: | ||
| 381 | + self.traceback = output.diagnostic | ||
| 379 | 382 | ||
| 380 | 383 | ||
| 381 | 384 | duration = output.test.duration | |
| Back | FazBrowse Home | New Git URL |
0 commit comments