[Python-checkins] r64192 - doctools/trunk/sphinx/latexwriter.py
georg.brandl
python-checkins at python.org
Thu Jun 12 21:46:40 CEST 2008
Author: georg.brandl
Date: Thu Jun 12 21:46:40 2008
New Revision: 64192
Log:
Fix line block rendering.
Modified:
doctools/trunk/sphinx/latexwriter.py
Modified: doctools/trunk/sphinx/latexwriter.py
==============================================================================
--- doctools/trunk/sphinx/latexwriter.py (original)
+++ doctools/trunk/sphinx/latexwriter.py Thu Jun 12 21:46:40 2008
@@ -874,7 +874,7 @@
def visit_line(self, node):
pass
def depart_line(self, node):
- pass
+ self.body.append('~\\\\\n')
def visit_block_quote(self, node):
# If the block quote contains a single object and that object
More information about the Python-checkins
mailing list