Skip to content

Commit

Permalink
WIP try work-around
Browse files Browse the repository at this point in the history
  • Loading branch information
mgeier committed Sep 10, 2019
1 parent cd31e6a commit fe9c243
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,3 +167,12 @@

latex_show_urls = 'footnote'
latex_show_pagerefs = True

# -- Work-around to support sphinxcontrib.rsvgconverter on Sphinx < 1.8 ---

# See https://github.com/missinglinkelectronics/sphinxcontrib-svg2pdfconverter/issues/2

import sphinx.locale

if not hasattr(sphinx.locale, '__'):
sphinx.locale.__ = lambda *args, **kwargs: pass

0 comments on commit fe9c243

Please sign in to comment.