diff options
author | Éric Araujo <merwok@netwok.org> | 2011-07-26 16:01:08 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-07-26 16:01:08 (GMT) |
commit | a0e92a802815d55dafd303b39843ddd2b9784bdb (patch) | |
tree | ec530c8b0dc40d3285975e915e268e9f615f6606 /Tools/scripts/reindent-rst.py | |
parent | 1ce7b17165c405a0772fb49c3b7143aa6b9ce4cd (diff) | |
download | cpython-a0e92a802815d55dafd303b39843ddd2b9784bdb.zip cpython-a0e92a802815d55dafd303b39843ddd2b9784bdb.tar.gz cpython-a0e92a802815d55dafd303b39843ddd2b9784bdb.tar.bz2 |
Fix missing or wrong shebangs and missing executable bits for scripts (#10318)
Diffstat (limited to 'Tools/scripts/reindent-rst.py')
-rwxr-xr-x | Tools/scripts/reindent-rst.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/reindent-rst.py b/Tools/scripts/reindent-rst.py index ceb84bf..25608af 100755 --- a/Tools/scripts/reindent-rst.py +++ b/Tools/scripts/reindent-rst.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Make a reST file compliant to our pre-commit hook. # Currently just remove trailing whitespace. |