diff options
author | Thomas Heller <theller@ctypes.org> | 2006-03-09 18:49:35 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2006-03-09 18:49:35 (GMT) |
commit | 3b9e9ae8a5516357c84bb8ca90b826ae0966c5d0 (patch) | |
tree | d9125156289987dc81ba3e4e3db2dbdbec9e32a7 /Tools/scripts | |
parent | a16bb0c15617be2130c03606ce7f438b3fee3a10 (diff) | |
download | cpython-3b9e9ae8a5516357c84bb8ca90b826ae0966c5d0.zip cpython-3b9e9ae8a5516357c84bb8ca90b826ae0966c5d0.tar.gz cpython-3b9e9ae8a5516357c84bb8ca90b826ae0966c5d0.tar.bz2 |
Deleted the svn_mime-type application/octet-stream from PCBuild/pcbuild.sln.
Tools/scripts/svneol.py: added the .sln and .vcproj extensions because these are text files.
Ran svneol.py over the source tree.
Diffstat (limited to 'Tools/scripts')
-rw-r--r-- | Tools/scripts/svneol.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/svneol.py b/Tools/scripts/svneol.py index d82b69f..a5e562c 100644 --- a/Tools/scripts/svneol.py +++ b/Tools/scripts/svneol.py @@ -65,7 +65,7 @@ def proplist(root, fn): f.close() return result -possible_text_file = re.compile(r"\.([hc]|py|txt)$").search +possible_text_file = re.compile(r"\.([hc]|py|txt|sln|vcproj)$").search for root, dirs, files in os.walk('.'): if '.svn' in dirs: |