Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
t20100 committed Nov 30, 2022
1 parent 7282cc5 commit ef0a95a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hdf5plugin/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def register_filter(name):
if len(filenames):
if name == 'blosc': # Handle name prefix conflict with blosc2
for filename in filenames:
if not _os.path.basename(filename).startswith('libh5blosc2'):
if not os.path.basename(filename).startswith('libh5blosc2'):
break # That's the blosc(1) filename
else:
_logger.error("Cannot initialize filter %s: File not found", name)
Expand Down

0 comments on commit ef0a95a

Please sign in to comment.