Missed one write()->writeln(). Fixed.

This commit is contained in:
ringmaster 2013-10-28 17:06:20 -04:00
parent bca1e12597
commit f130caa4a2
1 changed files with 1 additions and 1 deletions

View File

@ -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) {