diff options
Diffstat (limited to 'scripts/HeaderCheck.py')
-rw-r--r-- | scripts/HeaderCheck.py | 3 |
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)) |