Skip to content

Commit

Permalink
Merge pull request #4762 from Flamefire/typo
Browse files Browse the repository at this point in the history
Fix typo in log message, remove superflous "of"
  • Loading branch information
boegel authored Feb 18, 2025
2 parents ebbfe45 + 64f5529 commit 804359d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions easybuild/framework/easyblock.py
Original file line number Diff line number Diff line change
Expand Up @@ -3340,8 +3340,8 @@ def sanity_check_rpath(self, rpath_dirs=None, check_readelf_rpath=True):
# For example, libcuda.so.1 should never be RPATH-ed by design,
# see https://github.com/easybuilders/easybuild-framework/issues/4095
filter_rpath_sanity_libs = build_option('filter_rpath_sanity_libs')
msg = "Ignoring the following libraries if they are not found by RPATH sanity check: {filter_rpath_sanity_libs}"
self.log.info(msg)
self.log.info("Ignoring the following libraries if they are not found by RPATH sanity check: %s",
filter_rpath_sanity_libs)

if rpath_dirs is None:
rpath_dirs = self.cfg['bin_lib_subdirs'] or self.bin_lib_subdirs()
Expand Down Expand Up @@ -4483,7 +4483,7 @@ def build_and_install_one(ecdict, init_env):
try:
app_class = get_easyblock_class(easyblock, name=name)
app = app_class(ecdict['ec'])
_log.info("Obtained application instance of for %s (easyblock: %s)" % (name, easyblock))
_log.info("Obtained application instance for %s (easyblock: %s)" % (name, easyblock))
except EasyBuildError as err:
print_error("Failed to get application instance for %s (easyblock: %s): %s" % (name, easyblock, err.msg),
silent=silent)
Expand Down

0 comments on commit 804359d

Please sign in to comment.