From c0f3b398d9603d5c5110855ec960f7fb95d60774 Mon Sep 17 00:00:00 2001 From: Aayush Tyagi Date: Sat, 27 Jun 2020 20:51:25 +0530 Subject: [PATCH] Update compound_message.py --- sqlflow/compound_message.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlflow/compound_message.py b/sqlflow/compound_message.py index 9821cd4..b783c6e 100644 --- a/sqlflow/compound_message.py +++ b/sqlflow/compound_message.py @@ -37,7 +37,7 @@ def __repr__(self): if isinstance(r[0], Rows): all_string = '\n'.join([all_string, r[0].__repr__()]) else: - all_string = '\n'.join([all_string, r[0].__repr__()]) + all_string = '\n'.join([all_string, r[0]."

%s

" % (r[0].__str__().replace("\n", "
"))]) return all_string def _repr_html_(self):