aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--termcast_server/termcast.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/termcast_server/termcast.py b/termcast_server/termcast.py
index 97bcc6b..e8753ed 100644
--- a/termcast_server/termcast.py
+++ b/termcast_server/termcast.py
@@ -72,8 +72,8 @@ class Handler(object):
cell = self.vt.cell(i, j)
term[i].append({
"c": cell.contents(),
- "f": cell.fgcolor().color(),
- "b": cell.bgcolor().color(),
+ "f": cell.fgcolor(),
+ "b": cell.bgcolor(),
"o": cell.bold(),
"i": cell.italic(),
"u": cell.underline(),
@@ -92,8 +92,8 @@ class Handler(object):
screen[i][j],
{
"c": cell.contents(),
- "f": cell.fgcolor().color(),
- "b": cell.bgcolor().color(),
+ "f": cell.fgcolor(),
+ "b": cell.bgcolor(),
"o": cell.bold(),
"i": cell.italic(),
"u": cell.underline(),