diff options
author | ringmaster <epithet@gmail.com> | 2013-10-28 17:06:20 -0400 |
---|---|---|
committer | ringmaster <epithet@gmail.com> | 2013-10-28 17:06:36 -0400 |
commit | f130caa4a2158b516cf0f0bc383d3f83f91dfc07 (patch) | |
tree | b653bad3a8391f37726d1fc1aa4fbed5fc07f1fd /core | |
parent | bca1e12597c1055868b54e1a49aac4140e3e6cbb (diff) | |
download | nextcloud-server-f130caa4a2158b516cf0f0bc383d3f83f91dfc07.tar.gz nextcloud-server-f130caa4a2158b516cf0f0bc383d3f83f91dfc07.zip |
Missed one write()->writeln(). Fixed.
Diffstat (limited to 'core')
-rw-r--r-- | core/command/upgrade.php | 2 |
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) { |