From a82408a06ff4408394d0950b9fb8f0bdbd8a6137 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Thu, 23 Feb 2023 09:38:56 +0200 Subject: [PATCH] fix message --- application/Espo/Classes/ConsoleCommands/CreateAdminUser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/Espo/Classes/ConsoleCommands/CreateAdminUser.php b/application/Espo/Classes/ConsoleCommands/CreateAdminUser.php index 9e6939a147..c20c388845 100644 --- a/application/Espo/Classes/ConsoleCommands/CreateAdminUser.php +++ b/application/Espo/Classes/ConsoleCommands/CreateAdminUser.php @@ -80,7 +80,7 @@ class CreateAdminUser implements Command ->findOne(); if ($existingUser) { - $io->writeLine("A user with the same already exists."); + $io->writeLine("A user with the same username already exists."); $io->setExitStatus(1); return;