Skip to content

Commit

Permalink
forgot to change back the library extension name from meson test
Browse files Browse the repository at this point in the history
  • Loading branch information
leonfoks committed Oct 15, 2024
1 parent d94ba16 commit 93a2535
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/gatdaem1d/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#Function to load the shared library
def load_library():
files = os.listdir(os.path.dirname(os.path.realpath(__file__)))
libname = [file for file in files if 'gatdaem1d_ext' in file][0]
libname = [file for file in files if 'gatdaem1d' in file][0]
libname = os.path.join(os.path.dirname(os.path.realpath(__file__)),libname)
lib = ctypes.CDLL(libname)
return lib;
Expand Down

0 comments on commit 93a2535

Please sign in to comment.