diff options
-rwxr-xr-x | Demo/stdwin/ibrowse/ifile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/stdwin/ibrowse/ifile.py b/Demo/stdwin/ibrowse/ifile.py index 584fb34..1ea880e 100755 --- a/Demo/stdwin/ibrowse/ifile.py +++ b/Demo/stdwin/ibrowse/ifile.py @@ -311,7 +311,7 @@ def try_open(file): for dir in INFOPATH: try: return open(dir + file, 'r') - except RuntimeError: + except IOError: pass raise NoSuchFile, file |