summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-02-19 23:31:34 +0100
committerGeorg Brandl <georg@python.org>2009-02-19 23:31:34 +0100
commit9e16a98b5b8542935b312b1732a416a214de2ece (patch)
tree9d3c4309165d753ddc2f1dfdc00c47f2717e515e /utils
parent32755834c34b03e35b900b091822012b62ebfbf6 (diff)
downloadsphinx-9e16a98b5b8542935b312b1732a416a214de2ece.tar.gz
Make "make check" happy.
Diffstat (limited to 'utils')
-rwxr-xr-xutils/check_sources.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/check_sources.py b/utils/check_sources.py
index 8a115c71..361fcfc1 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: