aboutsummaryrefslogtreecommitdiffstats
path: root/vt100.py
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-09-14 20:54:04 -0400
committerJesse Luehrs <doy@tozt.net>2014-09-14 20:54:04 -0400
commit14b364588be59a89facc939a9d0060f8aa2cdaa1 (patch)
tree32c593961231e003c074e39aad86e15a37933159 /vt100.py
parent375d514870d6999dc47c768084a26f20bf0bc7aa (diff)
downloadpython-termcast-server-14b364588be59a89facc939a9d0060f8aa2cdaa1.tar.gz
python-termcast-server-14b364588be59a89facc939a9d0060f8aa2cdaa1.zip
dereference this pointer automatically
Diffstat (limited to 'vt100.py')
-rw-r--r--vt100.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/vt100.py b/vt100.py
index db3509c..b6ec1a9 100644
--- a/vt100.py
+++ b/vt100.py
@@ -77,4 +77,4 @@ class vt100(object):
return vt100_process_string(self.vt, string, len(string))
def cell(self, x, y):
- return vt100_cell_at(self.vt, x, y)
+ return vt100_cell_at(self.vt, x, y).contents