diff options
Diffstat (limited to 'sphinx/writers/latex.py')
-rw-r--r-- | sphinx/writers/latex.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index cfd100138..41d83d48d 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -1137,8 +1137,8 @@ class LaTeXTranslator(SphinxTranslator): if self.next_table_colspec: self.table.colspec = '{%s}\n' % self.next_table_colspec if 'colwidths-given' in node.get('classes', []): - logger.info('both tabularcolumns and :widths: option are given. ' - ':widths: is ignored.', location=node) + logger.info(__('both tabularcolumns and :widths: option are given. ' + ':widths: is ignored.'), location=node) self.next_table_colspec = None def depart_table(self, node): |