Skip to content

Commit cbefdb9

Browse files
committed
write a little module docstring for fix_load_path
1 parent cd1b3b5 commit cbefdb9

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

bin/fix_load_path_mac.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
"""
2+
Creates working dylibs on Mac OS X by adding the full path to referenced libraries.
3+
This fixes ImportErrors that may appear starting with SUNDIALS 2.6.
4+
5+
"""
16
import os
27
import glob
38
import re
@@ -27,4 +32,4 @@ def extract_library(so_file):
2732

2833
for so in sos:
2934
extract_library(so)
30-
print("Done for %s!"%so)
35+
print("Done for %s!"%so)

0 commit comments

Comments
 (0)