aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-09-25 16:07:25 -0400
committerJesse Luehrs <doy@tozt.net>2014-09-25 16:07:25 -0400
commit5ddef2673cf73df048f5d4e97ee1020c277c6b83 (patch)
tree834832518878aa2acbf82b3ddbea34e6fe58572f
parent02b40d64e5e6d2ef9958d3af2b60cb84eb72adb6 (diff)
downloadlibvt100-python-5ddef2673cf73df048f5d4e97ee1020c277c6b83.tar.gz
libvt100-python-5ddef2673cf73df048f5d4e97ee1020c277c6b83.zip
whoops, forgot to actually call the function
-rw-r--r--vt100module.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/vt100module.c b/vt100module.c
index ed0d808..9c44ae8 100644
--- a/vt100module.c
+++ b/vt100module.c
@@ -111,6 +111,8 @@ static PyObject *py_vt100_delete(PyObject *self, PyObject *args)
return NULL;
}
+ vt100_screen_delete(vt);
+
Py_INCREF(Py_None);
return Py_None;
}