Skip to content

Commit e8f3690

Browse files
committed
Change "// WARN" in tidy to "// NOTE" as requested by @catamorphism
1 parent ef4c060 commit e8f3690

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/etc/tidy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ def do_license_check(name, contents):
4949
report_err("FIXME without issue number")
5050
if line.find("TODO") != -1:
5151
report_err("TODO is deprecated; use FIXME")
52-
idx = line.find("// WARN")
52+
idx = line.find("// NOTE")
5353
if idx != -1:
54-
report_warn("WARN:" + line[idx + len("// WARN"):])
54+
report_warn("NOTE:" + line[idx + len("// NOTE"):])
5555
if (line.find('\t') != -1 and
5656
fileinput.filename().find("Makefile") == -1):
5757
report_err("tab character")

0 commit comments

Comments
 (0)