diff options
author | Georg Brandl <georg@python.org> | 2009-02-19 23:31:34 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-02-19 23:31:34 +0100 |
commit | a43b6518049cb9610509291f18e19b902f15bab3 (patch) | |
tree | 9d3c4309165d753ddc2f1dfdc00c47f2717e515e /utils/check_sources.py | |
parent | 3f7733f8d303b10b5a72ea0a52508c63a1eb6034 (diff) | |
download | sphinx-git-a43b6518049cb9610509291f18e19b902f15bab3.tar.gz |
Make "make check" happy.
Diffstat (limited to 'utils/check_sources.py')
-rwxr-xr-x | utils/check_sources.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/check_sources.py b/utils/check_sources.py index 8a115c71a..361fcfc14 100755 --- a/utils/check_sources.py +++ b/utils/check_sources.py @@ -64,9 +64,9 @@ def check_style_and_encoding(fn, lines): encoding = co.group(1) if line.strip().startswith('#'): continue - m = not_ix_re.search(line) - if m: - yield lno+1, '"' + m.group() + '"' + #m = not_ix_re.search(line) + #if m: + # yield lno+1, '"' + m.group() + '"' if is_const_re.search(line): yield lno+1, 'using == None/True/False' try: |