Fixed bug that clipped the end of bodies.

This commit is contained in:
jacob 2010-06-02 19:16:12 -05:00
parent 9e81b8f003
commit c894c38cd3

View File

@ -59,3 +59,8 @@ class WebSupportTranslator(HTMLTranslator):
self.in_commentable = False
self.body = []
def depart_document(self, node):
assert(not self.in_commentable)
self.support_document.add_slice(''.join(self.body))