diff options
author | Georg Brandl <georg@python.org> | 2008-03-21 15:27:21 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-03-21 15:27:21 +0000 |
commit | 637b1379bc50b3bc27852ca7971bec9c1d4dbc5f (patch) | |
tree | 14cc0af9f720147865072326edeea5af54174a50 /utils/check_sources.py | |
parent | 5f78bc436b33d9f233cfdd61066f5a72052fe0ef (diff) | |
download | sphinx-git-637b1379bc50b3bc27852ca7971bec9c1d4dbc5f.tar.gz |
Fix a few overlong lines, and use \t instead of literal tabs.
Diffstat (limited to 'utils/check_sources.py')
-rwxr-xr-x | utils/check_sources.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/check_sources.py b/utils/check_sources.py index 761f05ae0..525256076 100755 --- a/utils/check_sources.py +++ b/utils/check_sources.py @@ -139,7 +139,7 @@ def check_fileheader(fn, lines): yield 0, "no correct copyright info" -@checker('.py', '.html', '.js') +@checker('.py', '.html') def check_whitespace_and_spelling(fn, lines): for lno, line in enumerate(lines): if "\t" in line: |