diff --git a/core/lib/Drupal/Core/Config/Entity/ConfigEntityUpdater.php b/core/lib/Drupal/Core/Config/Entity/ConfigEntityUpdater.php
index 4202e9ebf6f4f9775d1f831ddaa6bfe40a92ecad..bad8ae78bd9cd5f365c40dd4f68f0e20997162df 100644
--- a/core/lib/Drupal/Core/Config/Entity/ConfigEntityUpdater.php
+++ b/core/lib/Drupal/Core/Config/Entity/ConfigEntityUpdater.php
@@ -163,7 +163,7 @@ public function update(array &$sandbox, $entity_type_id, callable $callback = NU
     if (!empty($sandbox[self::SANDBOX_KEY]['failed_entity_ids'])) {
       $entity_type = $this->entityTypeManager->getDefinition($entity_type_id);
       if (\Drupal::moduleHandler()->moduleExists('dblog')) {
-        return new TranslatableMarkup("Updates failed for the entity type %entity_type, for %entity_ids. <a href=:url>Check the logs</a>.", [
+        return new TranslatableMarkup('Updates failed for the entity type %entity_type, for %entity_ids. <a href=":url">Check the logs</a>.', [
           '%entity_type' => $entity_type->getLabel(),
           '%entity_ids' => implode(', ', $sandbox[self::SANDBOX_KEY]['failed_entity_ids']),
           ':url' => Url::fromRoute('dblog.overview')->toString(),