summaryrefslogtreecommitdiff
path: root/c2rst.py
diff options
context:
space:
mode:
authorScott Shawcroft <scott@chickadee.tech>2016-10-19 10:42:15 -0700
committerScott Shawcroft <scott@chickadee.tech>2016-10-19 10:53:37 -0700
commit7ebc9a4511d52707ce88a1b8bc2d3fa638e1fb91 (patch)
treedf4a6e5a627c3a1268f1d19e2bd7813d0ceebcc9 /c2rst.py
parent4c9fcd6d2193abe45add192663195a929a57858c (diff)
Switch away from sphinx.parsers which isn't available in sphinx 1.3.5 on Read The Docs.
Diffstat (limited to 'c2rst.py')
-rw-r--r--c2rst.py4
1 files 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()