Skip to content

Commit

Permalink
Put the human readable date in parens #233
Browse files Browse the repository at this point in the history
  • Loading branch information
krlawrence committed Jun 20, 2022
1 parent 9099e6c commit bd2b07c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graph_notebook/magics/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def show_records(self, records):
html += '<td style="border: 1px solid black; vertical-align: top; text-align: left;" colspan="3">{}'.format(commit_num)
if timestamp != None:
html += '&nbsp;&nbsp;&nbsp;Timestamp = {}'.format(timestamp)
html += '&nbsp;&nbsp;&nbsp;{} UTC'.format(utc_text)
html += '&nbsp;&nbsp;&nbsp;( {} UTC )'.format(utc_text)
html += '</td>'
html += '</tr><tr style="border: 1px solid black;">'

Expand Down

0 comments on commit bd2b07c

Please sign in to comment.