Be even more lenient when catching errors from readlines().
This commit is contained in:
parent
4b5386f398
commit
d10b2dc4fc
|
@ -125,11 +125,12 @@ def updatecache(filename, module_globals=None):
|
|||
# No luck
|
||||
## print '*** Cannot stat', filename, ':', msg
|
||||
return []
|
||||
## print("Refreshing cache for %s..." % fullname)
|
||||
try:
|
||||
fp = open(fullname, 'rU')
|
||||
lines = fp.readlines()
|
||||
fp.close()
|
||||
except IOError as msg:
|
||||
except Exception as msg:
|
||||
## print '*** Cannot open', fullname, ':', msg
|
||||
return []
|
||||
coding = "utf-8"
|
||||
|
|
Loading…
Reference in New Issue