diff options
author | Georg Brandl <georg@python.org> | 2008-05-16 15:23:30 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-16 15:23:30 (GMT) |
commit | 8efadf5d6613e76dfc5476f58adb9a2135173129 (patch) | |
tree | 93ea7c3914c65801cd3844aa0ea1304676076940 /Tools/scripts/fixheader.py | |
parent | d11ae5d6ecda1d233af651a360c9f9140992f05d (diff) | |
download | cpython-8efadf5d6613e76dfc5476f58adb9a2135173129.zip cpython-8efadf5d6613e76dfc5476f58adb9a2135173129.tar.gz cpython-8efadf5d6613e76dfc5476f58adb9a2135173129.tar.bz2 |
Ran 2to3 over scripts directory.
Diffstat (limited to 'Tools/scripts/fixheader.py')
-rwxr-xr-x | Tools/scripts/fixheader.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/fixheader.py b/Tools/scripts/fixheader.py index 7231829..1208031 100755 --- a/Tools/scripts/fixheader.py +++ b/Tools/scripts/fixheader.py @@ -17,7 +17,7 @@ def process(filename): return data = f.read() f.close() - if data[:2] <> '/*': + if data[:2] != '/*': sys.stderr.write('%s does not begin with C comment\n' % filename) return try: |