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.
This commit is contained in:
Thomas Heller 2006-03-09 18:49:35 +00:00
parent a16bb0c156
commit 3b9e9ae8a5
3 changed files with 399 additions and 399 deletions

View File

@ -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: