From 142d271f014953d8f3cb5dac7cfac1e224e84d17 Mon Sep 17 00:00:00 2001 From: Mark Daoust Date: Thu, 5 Mar 2020 05:54:47 -0800 Subject: [PATCH] Fix ubuntu sanity-check --- tensorflow/python/summary/writer/writer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/python/summary/writer/writer.py b/tensorflow/python/summary/writer/writer.py index 5b06820abd9..889f71bc669 100644 --- a/tensorflow/python/summary/writer/writer.py +++ b/tensorflow/python/summary/writer/writer.py @@ -359,7 +359,7 @@ class FileWriter(SummaryToEventTransformer): raise RuntimeError( "v1.summary.FileWriter is not compatible with eager execution. " "Use `tf.summary.create_file_writer`," - "or a `with v1.Graph().as_default():` context") + "or a `with v1.Graph().as_default():` context") if session is not None: event_writer = EventFileWriterV2( session, logdir, max_queue, flush_secs, filename_suffix)