Skip to content

Commit

Permalink
browser: suppress icon warnings from inaccessible datasets, closes #470
Browse files Browse the repository at this point in the history
jordens committed Jun 15, 2016
1 parent a8b211f commit 53eb35c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions artiq/browser/files.py
Original file line number Diff line number Diff line change
@@ -16,6 +16,8 @@ def open_h5(info):
return
try:
return h5py.File(info.filePath(), "r")
except OSError: # e.g. file being written (see #470)
return
except:
logger.warning("unable to read HDF5 file %s", info.filePath(),
exc_info=True)

0 comments on commit 53eb35c

Please sign in to comment.