Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
bring Windows behavior into alignment with posix by setting the H5 fi…
…le info to FILETYPE_SERIES_COMPLETE
  • Loading branch information
barentine committed Mar 7, 2026
commit 633e5e9ede02b59426d859c83cfb176aa6cf1dae
2 changes: 1 addition & 1 deletion PYME/IO/clusterListing.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def _file_info(path, fn):
return (fn + '/', FileInfo(ftype, dirsize(fpath)))

elif fpath.endswith('.h5'):
return (fn, FileInfo(FILETYPE_SERIES, os.path.getsize(fpath)))
return (fn, FileInfo(FILETYPE_SERIES|FILETYPE_SERIES_COMPLETE, os.path.getsize(fpath)))
else:
return (fn, FileInfo(FILETYPE_NORMAL, os.path.getsize(fpath)))

Expand Down
Loading