Merge pull request #4949 from tk0miya/fix_wrong_argument_for_Domain.process_doc

Fix wrong argument for Domain.process_doc
This commit is contained in:
Takayuki SHIMIZUKAWA
2018-05-12 15:25:04 +09:00
committed by GitHub

View File

@@ -35,4 +35,4 @@ class SphinxDomains(SphinxTransform):
def apply(self):
# type: () -> None
for domain in itervalues(self.env.domains):
domain.process_doc(self, self.env.docname, self.document)
domain.process_doc(self.env, self.env.docname, self.document)