I got a script that I want to use to change a repeated string throughout a project folder structure. Once changed then I can check this into SVN. However when I run my script it
Try this:
for root, subFolders, files in os.walk(rootdir): if '.svn' in subFolders: subFolders.remove('.svn')
And then continue processing.