Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jmao-denver committed Oct 24, 2024
1 parent 4c8752c commit 4002272
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jpyutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ def _find_python_dll_file(fail=False):
file_names = ['libpython' + v + '.dylib' for v in versions] + \
['libpython' + v + '.so' for v in versions]
else:
versions = (vmaj + "." + vmin, vmaj, vmaoj + "." + vmin + dll_free_threaded_suffix, vmaj + dll_free_threaded_suffix, '')
versions = (vmaj + "." + vmin, vmaj, vmaj + "." + vmin + dll_free_threaded_suffix, vmaj + dll_free_threaded_suffix, '')
file_names = ['libpython' + v + '.so' for v in versions]

logger.debug("Potential Python shared library file names: %s" % repr(file_names))
Expand Down

0 comments on commit 4002272

Please sign in to comment.