Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion easybuild/easyblocks/p/python.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ def _inject_patch_ctypes_ld_library_path(self):
else:
msg = "The length of 'checksums' (%s) is not equal to the total amount of sources (%s) + patches (%s). "
msg += "Did you forget to add a checksum for patch_ctypes_ld_library_path?"
raise EasyBuildError(msg, len(checksums), len(sources), len(len_patches + 1))
raise EasyBuildError(msg, len(checksums), len(sources), len_patches + 1)
# If LD_LIBRARY_PATH is filtered, but no patch is specified, warn the user that his may not work
elif (
'LD_LIBRARY_PATH' in filtered_env_vars and
Expand Down