Skip to content

Commit

Permalink
Fix Python .so location
Browse files Browse the repository at this point in the history
  • Loading branch information
tdewolff committed May 26, 2024
1 parent eee2b08 commit e45c411
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindings/py/src/minify/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
__all__ = ['MinifyError', 'config', 'file', 'string']


lib = ffi.dlopen(str(pathlib.Path(__file__).parent / '_minify.so'))
lib = ffi.dlopen(str(pathlib.Path(__file__).parent / 'minify.so'))


class MinifyError(ValueError):
Expand Down

0 comments on commit e45c411

Please sign in to comment.