diff options
| author | Scott Shawcroft <scott@chickadee.tech> | 2016-10-19 10:42:15 -0700 |
|---|---|---|
| committer | Scott Shawcroft <scott@chickadee.tech> | 2016-10-19 10:53:37 -0700 |
| commit | 7ebc9a4511d52707ce88a1b8bc2d3fa638e1fb91 (patch) | |
| tree | df4a6e5a627c3a1268f1d19e2bd7813d0ceebcc9 /c2rst.py | |
| parent | 4c9fcd6d2193abe45add192663195a929a57858c (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.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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() |
