Skip to content

Commit

Permalink
Fix: algorithm installation log message
Browse files Browse the repository at this point in the history
  • Loading branch information
LudoBar committed Jun 18, 2024
1 parent 43fdd18 commit 95edff9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ikomia/dataprocess/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def create_algorithm(self, name: str, parameters: CWorkflowTaskParam = None,

if (public_hub or private_hub) and not algo_dir:
# Algorithm is not installed, so try to install it from HUB
logger.warning("Try installing %s from Ikomia HUB...", private_hub)
logger.warning("Try installing %s from Ikomia HUB...", name)
self.install_algorithm(name, public_hub, private_hub)
algo = self.create_instance(name, parameters)
else:
Expand Down

0 comments on commit 95edff9

Please sign in to comment.