From 87a4417791cd22148ea559363e01b31106b1b95f Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 22 May 2010 13:17:09 +0200 Subject: [PATCH] Fix long line. --- sphinx/writers/latex.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index 5319f9f43..438820570 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -222,7 +222,8 @@ class LaTeXTranslator(nodes.NodeVisitor): # the first item here is the default and must not be changed # the second item is the default for the master file and can be changed # by .. highlight:: directive in the master file - self.hlsettingstack = 2 * [[builder.config.highlight_language, sys.maxint]] + self.hlsettingstack = 2 * [[builder.config.highlight_language, + sys.maxint]] self.written_ids = set() self.footnotestack = [] self.curfilestack = []