summaryrefslogtreecommitdiff
path: root/sphinx/io.py
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2018-04-16 00:24:49 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2018-04-21 11:28:23 +0900
commit6b14cd3bd62cec3d653965cfa7384e98c2c93bf7 (patch)
treeb904112516a4b7256d55a4eb353815b933fbd3ef /sphinx/io.py
parent538c061e7c2589d00377669bc0b8e1667387a3e1 (diff)
downloadsphinx-git-6b14cd3bd62cec3d653965cfa7384e98c2c93bf7.tar.gz
Change priority of versioning doctrees
Diffstat (limited to 'sphinx/io.py')
-rw-r--r--sphinx/io.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/sphinx/io.py b/sphinx/io.py
index 2c80fb4b3..0f54aa891 100644
--- a/sphinx/io.py
+++ b/sphinx/io.py
@@ -34,6 +34,7 @@ from sphinx.transforms.i18n import (
from sphinx.transforms.references import SphinxDomains
from sphinx.util import logging
from sphinx.util.docutils import LoggingReporter
+from sphinx.versioning import UIDTransform
if False:
# For type annotation
@@ -95,7 +96,7 @@ class SphinxStandaloneReader(SphinxBaseReader):
HandleCodeBlocks, AutoNumbering, AutoIndexUpgrader, SortIds,
RemoveTranslatableInline, FilterSystemMessages, RefOnlyBulletListTransform,
UnreferencedFootnotesDetector, SphinxSmartQuotes, ManpageLink,
- SphinxDomains, DoctreeReadEvent,
+ SphinxDomains, DoctreeReadEvent, UIDTransform,
] # type: List[Transform]
def __init__(self, app, *args, **kwargs):