Skip to content
This repository has been archived by the owner on Oct 13, 2020. It is now read-only.

Commit

Permalink
sphinx 1.7.0 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ajdavis committed Apr 4, 2018
1 parent 43a6413 commit db9faae
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion doc/taglist.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@

from docutils import nodes, utils
from sphinx.environment import NoUri
from sphinx.util.compat import Directive
try:
from sphinx.util.compat import Directive
except ImportError:
from docutils.parsers.rst import Directive


def get_tags(s):
Expand Down

0 comments on commit db9faae

Please sign in to comment.