aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/HeaderCheck.py
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2021-04-26 13:03:17 +1000
committerNeil <nyamatongwe@gmail.com>2021-04-26 13:03:17 +1000
commit241f33a38ca0887d1a47399de1bcf7ba0d544c41 (patch)
treeb1473d18368c1df380d8664362647142448168ac /scripts/HeaderCheck.py
parentef05273e9e8676a0c990a1926441f61b60e5812e (diff)
downloadscintilla-mirror-241f33a38ca0887d1a47399de1bcf7ba0d544c41.tar.gz
Remove some tracing from HeaderCheck as it produces much uninteresting output.
Diffstat (limited to 'scripts/HeaderCheck.py')
-rw-r--r--scripts/HeaderCheck.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/HeaderCheck.py b/scripts/HeaderCheck.py
index 1349c3b20..afa996384 100644
--- a/scripts/HeaderCheck.py
+++ b/scripts/HeaderCheck.py
@@ -51,9 +51,8 @@ def CheckFiles(headerOrderTxt):
orderedPaths = [p for p in sorted(filePaths) if not ExcludeName(str(p), excludes)]
allIncs = set()
for f in orderedPaths:
- print(" File ", f.relative_to(root))
+ #~ print(" File ", f.relative_to(root))
incs = ExtractHeaders(f)
- #~ print("\n".join(incs))
news = set(incs) - set(headerOrder)
allIncs = allIncs.union(set(incs))