diff options
author | Christoph Wurst <ChristophWurst@users.noreply.github.com> | 2023-01-20 13:12:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-20 13:12:43 +0100 |
commit | 473c546b5c562e19ba8f9d3aef9cd64d2458cda7 (patch) | |
tree | dbe29e16ad3b46be1f6a4b80cb502bfeaa9ab424 /core | |
parent | 37bb33c5799b834dfef3fb73936bd0e5a4773fb8 (diff) | |
parent | a8bad3a98fc20ebfedc23372d5bec50ebf4e1777 (diff) | |
download | nextcloud-server-473c546b5c562e19ba8f9d3aef9cd64d2458cda7.tar.gz nextcloud-server-473c546b5c562e19ba8f9d3aef9cd64d2458cda7.zip |
Merge pull request #36264 from nextcloud/fix/occ/repair-command-comment-formatting
fix(occ): Fix comment formatting of maintenance:repair command
Diffstat (limited to 'core')
-rw-r--r-- | core/Command/Maintenance/Repair.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Maintenance/Repair.php b/core/Command/Maintenance/Repair.php index e1d1862f3f4..01e62f2cd32 100644 --- a/core/Command/Maintenance/Repair.php +++ b/core/Command/Maintenance/Repair.php @@ -136,7 +136,7 @@ class Repair extends Command { } elseif ($event instanceof RepairInfoEvent) { $this->output->writeln('<info> - ' . $event->getMessage() . '</info>'); } elseif ($event instanceof RepairWarningEvent) { - $this->output->writeln('<comment> - WARNING: ' . $event->getMessage()) . '</comment>'; + $this->output->writeln('<comment> - WARNING: ' . $event->getMessage() . '</comment>'); } elseif ($event instanceof RepairErrorEvent) { $this->output->writeln('<error> - ERROR: ' . $event->getMessage() . '</error>'); } |