Some head

This commit is contained in:
Jon Tibble 2010-03-16 20:57:57 +00:00
commit 98a5dcd1b4
3 changed files with 662 additions and 655 deletions

View File

@ -1 +1 @@
1.9.0-bzr722
1.9.0-bzr743

File diff suppressed because it is too large Load Diff

View File

@ -99,6 +99,8 @@ def main():
start_dir = os.path.abspath(u'..')
for root, dirs, files in os.walk(start_dir):
for file in files:
if file.startswith(u'hook-') or file.startswith(u'test_'):
continue
if file.endswith(u'.py'):
print u'Parsing "%s"' % file
parse_file(start_dir, os.path.join(root, file), strings)