diff options
Diffstat (limited to 'src/etc/tidy.py')
| -rw-r--r-- | src/etc/tidy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/etc/tidy.py b/src/etc/tidy.py index 65737c53e61..997a9dd50fd 100644 --- a/src/etc/tidy.py +++ b/src/etc/tidy.py @@ -51,7 +51,7 @@ try: report_err("TODO is deprecated; use FIXME") idx = line.find("// NOTE") if idx != -1: - report_warn("NOTE:" + line[idx + len("// NOTE"):]) + report_warn("NOTE" + line[idx + len("// NOTE"):]) if (line.find('\t') != -1 and fileinput.filename().find("Makefile") == -1): report_err("tab character") |
