From bd2b07ce5a4f381919e8be4b662f909990a09b2a Mon Sep 17 00:00:00 2001 From: Kelvin Lawrence Date: Mon, 20 Jun 2022 16:32:38 -0500 Subject: [PATCH] Put the human readable date in parens #233 --- src/graph_notebook/magics/streams.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graph_notebook/magics/streams.py b/src/graph_notebook/magics/streams.py index d3594182..33aac419 100644 --- a/src/graph_notebook/magics/streams.py +++ b/src/graph_notebook/magics/streams.py @@ -200,7 +200,7 @@ def show_records(self, records): html += '{}'.format(commit_num) if timestamp != None: html += '   Timestamp = {}'.format(timestamp) - html += '   {} UTC'.format(utc_text) + html += '   ( {} UTC )'.format(utc_text) html += '' html += ''