From 7ebc9a4511d52707ce88a1b8bc2d3fa638e1fb91 Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Wed, 19 Oct 2016 10:42:15 -0700 Subject: [PATCH] Switch away from sphinx.parsers which isn't available in sphinx 1.3.5 on Read The Docs. --- c2rst.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/c2rst.py b/c2rst.py index 6b0fe646a..7f9e8d23d 100644 --- a/c2rst.py +++ b/c2rst.py @@ -1,7 +1,7 @@ -import sphinx.parsers +import docutils.parsers import docutils.parsers.rst as rst -class CStrip(sphinx.parsers.Parser): +class CStrip(docutils.parsers.Parser): def __init__(self): self.rst_parser = rst.Parser()