Skip to content

Commit

Permalink
update warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
rettigl committed Nov 28, 2024
1 parent d8ec600 commit 9e54ae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sed/loader/mpes/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def hdf5_to_dataframe(
)
except OSError as exc:
if "Unable to synchronously open file" in str(exc):
print(f"Unable to open file {f}: {str(exc)}")
print(f"Unable to open file {f}: {str(exc)}. Most likely the file is incomplete.")
pass

array_stack = da.concatenate(arrays, axis=1).T
Expand Down

0 comments on commit 9e54ae8

Please sign in to comment.