diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-04-08 19:17:33 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-04-08 19:17:33 (GMT) |
commit | 779ab703f43329b6b20afe732a4eb4c0d65c9054 (patch) | |
tree | 284f542ee81080bcd260f765c9a532cdb6937d70 /BuildTools | |
parent | c7145ce8f77eea28b43f113697e7c9b6db21773f (diff) | |
download | swift-779ab703f43329b6b20afe732a4eb4c0d65c9054.zip swift-779ab703f43329b6b20afe732a4eb4c0d65c9054.tar.bz2 |
Fix expanded tabs.
Diffstat (limited to 'BuildTools')
-rwxr-xr-x | BuildTools/CheckTabs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BuildTools/CheckTabs.py b/BuildTools/CheckTabs.py index 2cc1cf7..6074a66 100755 --- a/BuildTools/CheckTabs.py +++ b/BuildTools/CheckTabs.py @@ -5,7 +5,7 @@ import os, sys foundExpandedTabs = False for (path, dirs, files) in os.walk(".") : - if not "3rdParty" in path and not ".sconf" in path : + if not "3rdParty" in path and not ".sconf" in path and not ".framework" in path : for filename in [os.path.join(path, file) for file in files if (file.endswith(".cpp") or file.endswith(".h")) and not "ui_" in file and not "moc_" in file and not "qrc_" in file] : file = open(filename, "r") contents = [] |