aboutsummaryrefslogtreecommitdiffstats
path: root/termcast.py
diff options
context:
space:
mode:
Diffstat (limited to 'termcast.py')
-rw-r--r--termcast.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/termcast.py b/termcast.py
index 171980d..f94f5c7 100644
--- a/termcast.py
+++ b/termcast.py
@@ -15,7 +15,7 @@ class Handler(object):
term = ''
for i in range(0, 24):
for j in range(0, 80):
- term += self.vt.cell(i, j).contents.contents()
+ term += self.vt.cell(i, j).contents()
term += "\n"
return term[:-1]