Index: grit_info.py |
=================================================================== |
--- grit_info.py (revision 141) |
+++ grit_info.py (working copy) |
@@ -57,7 +57,7 @@ |
grit_root_dir = os.path.relpath(os.path.dirname(__file__), os.getcwd()) |
for root, dirs, filenames in os.walk(grit_root_dir): |
grit_src = [os.path.join(root, f) for f in filenames |
- if f.endswith('.py')] |
+ if f.endswith('.py') and not f.endswith('_unittest.py')] |
files.extend(grit_src) |
return sorted(files) |