From 239586ed8779db28bd79aa61888bd8b8ac7010a7 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Sat, 15 Nov 2025 21:22:45 +0100 Subject: [PATCH] fix output of message --- utils/Commands/RepositoryextensionCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/Commands/RepositoryextensionCommand.php b/utils/Commands/RepositoryextensionCommand.php index 9d8a33f67..26d10ed65 100644 --- a/utils/Commands/RepositoryextensionCommand.php +++ b/utils/Commands/RepositoryextensionCommand.php @@ -92,7 +92,7 @@ class RepositoryextensionCommand extends Command $table->render(); return Command::SUCCESS; } else { - $output->writeln(sprintf("Could not get extension list from repository.", $filename)); + $output->writeln(sprintf("Could not get extension list from repository.")); return Command::FAILURE; } }