From fbe3749fe2d1812f8a522e364ab78ef8ea160557 Mon Sep 17 00:00:00 2001 From: Revan Sopher Date: Wed, 20 Nov 2019 08:09:25 -0800 Subject: [PATCH] Fix missing error string format. PiperOrigin-RevId: 281522547 Change-Id: Ibc0b9ae390ce73e3aceff5b38b6376432cb09416 --- tensorflow/python/tpu/tpu_strategy_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/python/tpu/tpu_strategy_util.py b/tensorflow/python/tpu/tpu_strategy_util.py index f3f1e78251f..e28aea87f96 100644 --- a/tensorflow/python/tpu/tpu_strategy_util.py +++ b/tensorflow/python/tpu/tpu_strategy_util.py @@ -158,7 +158,7 @@ def shutdown_tpu_system(cluster_resolver=None): tpu_name = compat.as_text(cluster_resolver._tpu) # pylint: disable=protected-access if tpu_name not in _INITIALIZED_TPU_SYSTEMS: logging.warning("You are shutting down a TPU system %s that has not been " - "initialized.") + "initialized." % tpu_name) logging.info("Shutting down the TPU system: %s", tpu_name)