]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix(occ): Fix comment formatting of maintenance:repair command 36264/head
authorChristoph Wurst <christoph@winzerhof-wurst.at>
Fri, 20 Jan 2023 08:58:22 +0000 (09:58 +0100)
committerChristoph Wurst <christoph@winzerhof-wurst.at>
Fri, 20 Jan 2023 09:00:41 +0000 (10:00 +0100)
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
core/Command/Maintenance/Repair.php

index e1d1862f3f4be6a0ec112deb07da1bbb98d322cd..01e62f2cd3232b4b05ec729ad388644582d69822 100644 (file)
@@ -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>');
                }