From 942d873f6cd1cdc13dc073d6aa0710cdd5f2b075 Mon Sep 17 00:00:00 2001 From: Phillip Cloud Date: Fri, 3 May 2013 19:53:51 -0400 Subject: [PATCH] BUG: fix qt console repr --- pandas/core/frame.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 8bfdee3b75170..3fd95e161b41a 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -746,8 +746,8 @@ def _repr_html_(self): self.info(buf=buf, verbose=verbose) info = buf.getvalue() info = info.replace('&', r'&') - info = info.replace('<', r'<') - info = info.replace('>', r'>') + info = info.replace('<', r'<') + info = info.replace('>', r'>') return ('
\n' + info + '\n
') else: return None