Skip to content

Commit

Permalink
style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
boegel committed Oct 15, 2024
1 parent a643291 commit a879eb9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions easybuild/framework/easyblock.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
from easybuild.tools.build_log import print_error, print_msg, print_warning
from easybuild.tools.config import CHECKSUM_PRIORITY_JSON, DEFAULT_ENVVAR_USERS_MODULES, PYTHONPATH, EBPYTHONPREFIXES
from easybuild.tools.config import FORCE_DOWNLOAD_ALL, FORCE_DOWNLOAD_PATCHES, FORCE_DOWNLOAD_SOURCES
from easybuild.tools.config import EASYBUILD_SOURCES_URL # noqa
from easybuild.tools.config import EASYBUILD_SOURCES_URL # noqa
from easybuild.tools.config import build_option, build_path, get_log_filename, get_repository, get_repositorypath
from easybuild.tools.config import install_path, log_path, package_path, source_paths
from easybuild.tools.environment import restore_env, sanitize_env
Expand Down Expand Up @@ -2134,8 +2134,10 @@ def update_exts_progress_bar_helper(running_exts, progress_size):
self.log.debug(msg + ', '.join(pending_deps))

if pending_deps:
self.log.info("Required dependencies not installed yet for extension %s (%s), adding it back to queue...",
ext.name, ', '.join(pending_deps))
msg = f"Required dependencies not installed yet for extension {ext.name} ("
msg += ', '.join(pending_deps)
msg += "), adding it back to queue...",
self.log.info(msg)
# purposely adding extension back in the queue at Nth place rather than at the end,
# since we assume that the required dependencies will be installed soon...
exts_queue.insert(max_iter, ext)
Expand Down

0 comments on commit a879eb9

Please sign in to comment.