Skip to content

Commit

Permalink
Fix extension error
Browse files Browse the repository at this point in the history
  • Loading branch information
langmm committed May 22, 2024
1 parent e33c1e3 commit de63130
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yggdrasil/drivers/CompiledModelDriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -5475,7 +5475,7 @@ def is_standard_libname(cls, libname):
return (
libname.startswith(cls.libtype_prefix[cls.library_libtype])
and (libname.endswith(tuple(cls.all_library_ext))
or DependencyRegistry.splitext(libname).startswith(
or DependencyRegistry.splitext(libname)[-1].startswith(
tuple(cls.all_library_ext))))

@classmethod
Expand Down

0 comments on commit de63130

Please sign in to comment.