We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb975e3 commit 57de5e8Copy full SHA for 57de5e8
1 file changed
src/guiguts/tools/pphtml.py
@@ -110,9 +110,9 @@ def run(self) -> None:
110
111
self.dialog.display_entries()
112
self.colorize_errors(PPhtmlChecker.fail_flag, HighlightTag.CHECKER_ERROR_PREFIX)
113
- self.colorize_errors("ERROR", HighlightTag.CHECKER_ERROR_PREFIX)
+ self.colorize_errors("ERROR: ", HighlightTag.CHECKER_ERROR_PREFIX)
114
self.colorize_errors(PPhtmlChecker.warn_flag, HighlightTag.CHECKER_WARNING)
115
- self.colorize_errors("WARNING", HighlightTag.CHECKER_WARNING)
+ self.colorize_errors("WARNING: ", HighlightTag.CHECKER_WARNING)
116
# Select first entry (which might not be one with a line number)
117
self.dialog.select_entry_by_index(0)
118
0 commit comments