summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorringmaster <epithet@gmail.com>2013-10-28 17:06:20 -0400
committerringmaster <epithet@gmail.com>2013-10-28 17:06:36 -0400
commitf130caa4a2158b516cf0f0bc383d3f83f91dfc07 (patch)
treeb653bad3a8391f37726d1fc1aa4fbed5fc07f1fd /core
parentbca1e12597c1055868b54e1a49aac4140e3e6cbb (diff)
downloadnextcloud-server-f130caa4a2158b516cf0f0bc383d3f83f91dfc07.tar.gz
nextcloud-server-f130caa4a2158b516cf0f0bc383d3f83f91dfc07.zip
Missed one write()->writeln(). Fixed.
Diffstat (limited to 'core')
-rw-r--r--core/command/upgrade.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/command/upgrade.php b/core/command/upgrade.php
index 4d1ad2effb8..7f03769a609 100644
--- a/core/command/upgrade.php
+++ b/core/command/upgrade.php
@@ -49,7 +49,7 @@ class Upgrade extends Command {
$output->writeln('Turned on maintenance mode');
});
$updater->listen('\OC\Updater', 'maintenanceEnd', function () use($output) {
- $output->write('Turned off maintenance mode');
+ $output->writeln('Turned off maintenance mode');
$output->writeln('Update successful');
});
$updater->listen('\OC\Updater', 'dbUpgrade', function () use($output) {