Skip to content

Commit

Permalink
Issue #4066: Beautified error message for required modules in package…
Browse files Browse the repository at this point in the history
… manager.
  • Loading branch information
stefanhaerter committed Jan 15, 2025
1 parent 4726957 commit 928e107
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Kernel/System/Package.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3908,7 +3908,7 @@ sub _CheckModuleRequired {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Sorry, can't install package, because module "
. "$Module->{Content} v$Module->{Version} is required "
. "$Module->{Content} " . ( $Module->{Version} ? "v$Module->{Version}" : "" ) . " is required "
. "and not installed!",
);
return;
Expand Down

0 comments on commit 928e107

Please sign in to comment.