fix flake8 violation

This commit is contained in:
jfbu 2016-06-21 23:25:06 +02:00
parent 8e45f54d07
commit c88193e3df

View File

@ -1053,7 +1053,7 @@ class LaTeXTranslator(nodes.NodeVisitor):
else: else:
if self.table.has_problematic: if self.table.has_problematic:
colspec = ('*{%d}{p{\\dimexpr(\\linewidth-\\arrayrulewidth)/%d' colspec = ('*{%d}{p{\\dimexpr(\\linewidth-\\arrayrulewidth)/%d'
'-2\\tabcolsep-\\arrayrulewidth\\relax}|}' % \ '-2\\tabcolsep-\\arrayrulewidth\\relax}|}' %
(self.table.colcount, self.table.colcount)) (self.table.colcount, self.table.colcount))
self.body.append('{|' + colspec + '}\n') self.body.append('{|' + colspec + '}\n')
elif self.table.longtable: elif self.table.longtable: