This commit is contained in:
Terry Jan Reedy 2012-05-27 23:06:14 -04:00
commit c6aa93cf22
2 changed files with 4 additions and 1 deletions

View file

@ -81,7 +81,7 @@ class GrepDialog(SearchDialogBase):
hits = 0
for fn in list:
try:
f = open(fn)
f = open(fn, errors='replace')
except IOError as msg:
print(msg)
continue