[svn r45519] Ignore non-existing files

--HG--
branch : trunk
This commit is contained in:
fijal 2007-08-06 15:58:18 +02:00
parent f78a355042
commit a99085cea3
1 changed files with 5 additions and 2 deletions

View File

@ -42,8 +42,11 @@ if __name__ == '__main__':
string = args[0]
if options.ignorecase:
string = string.lower()
for x in curdir.visit('*.py', rec):
s = x.read()
for x in curdir.visit('*.py', rec):
try:
s = x.read()
except py.error.ENOENT:
pass # whatever, probably broken link (ie emacs lock)
searchs = s
if options.ignorecase:
searchs = s.lower()