diff --git a/core/Command/Upgrade.php b/core/Command/Upgrade.php
index f6f33783684a05bd2d71a706fece712a6e8fd43a..86f049d9f2aae4bae6d5daa9a9a6ec750ec21bab 100644
--- a/core/Command/Upgrade.php
+++ b/core/Command/Upgrade.php
@@ -193,7 +193,7 @@ class Upgrade extends Command {
 				$output->writeln('<info>Maintenance mode is kept active</info>');
 			});
 			$updater->listen('\OC\Updater', 'waitForCronToFinish', function () use($output) {
-				$output->writeln('<info>Waiting for cron to finish (checks again in 5 seconds)...</info>');
+				$output->writeln('<info>Waiting for cron to finish (checks again in 5 seconds) …</info>');
 			});
 			$updater->listen('\OC\Updater', 'updateEnd',
 				function ($success) use($output, $self) {
diff --git a/core/ajax/update.php b/core/ajax/update.php
index c1210eaa5b74b080363609ad1e1473bd7f4ea06e..377da7461003f77057ec446a0dbe1a257850df1a 100644
--- a/core/ajax/update.php
+++ b/core/ajax/update.php
@@ -154,7 +154,7 @@ if (\OCP\Util::needUpgrade()) {
 		$eventSource->send('success', (string)$l->t('Maintenance mode is kept active'));
 	});
 	$updater->listen('\OC\Updater', 'waitForCronToFinish', function () use ($eventSource, $l) {
-		$eventSource->send('success', (string)$l->t('Waiting for cron to finish (checks again in 5 seconds)...'));
+		$eventSource->send('success', (string)$l->t('Waiting for cron to finish (checks again in 5 seconds) …'));
 	});
 	$updater->listen('\OC\Updater', 'dbUpgradeBefore', function () use($eventSource, $l) {
 		$eventSource->send('success', (string)$l->t('Updating database schema'));