summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2011-01-04 23:34:23 +0100
committerGeorg Brandl <georg@python.org>2011-01-04 23:34:23 +0100
commit9cb059734c1c552ae5045a459a4a2e211d00070b (patch)
tree2feba7a2d311df10700403486cc59a331a2d2a3c
parent9899be1ea9e21389f6ef890c4441901eee50b433 (diff)
downloadsphinx-9cb059734c1c552ae5045a459a4a2e211d00070b.tar.gz
Fix long line.
-rw-r--r--sphinx/writers/latex.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py
index ffe14943..a89bb638 100644
--- a/sphinx/writers/latex.py
+++ b/sphinx/writers/latex.py
@@ -198,7 +198,8 @@ class LaTeXTranslator(nodes.NodeVisitor):
# because pTeX (Japanese TeX) cannot handle this count.
self.elements['babel'] += r'\newcount\pdfoutput\pdfoutput=0'
# to make the pdf with correct encoded hyperref bookmarks
- self.elements['preamble'] += r'\AtBeginDvi{\special{pdf:tounicode EUC-UCS2}}'
+ self.elements['preamble'] += \
+ r'\AtBeginDvi{\special{pdf:tounicode EUC-UCS2}}'
else:
self.builder.warn('no Babel option known for language %r' %
builder.config.language)