Commit b9e7c012 authored by Benjamin Peterson's avatar Benjamin Peterson

remove debugging rubish

parent 266e4548
......@@ -123,15 +123,12 @@ def updatecache(filename, module_globals=None):
except os.error:
pass
else:
# No luck
## print '*** Cannot stat', filename, ':', msg
return []
try:
fp = open(fullname, 'rU')
lines = fp.readlines()
fp.close()
except IOError, msg:
## print '*** Cannot open', fullname, ':', msg
return []
if lines and not lines[-1].endswith('\n'):
lines[-1] += '\n'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment