Move sphinx.make_mode to under sphinx.cmd

This commit is contained in:
Takeshi KOMIYA
2018-07-29 21:40:48 +09:00
parent 004b68f281
commit b0c3a8fc8e
2 changed files with 3 additions and 3 deletions

View File

@@ -200,7 +200,7 @@ files can be built by specifying individual filenames.
def make_main(argv=sys.argv[1:]): # type: ignore
# type: (List[unicode]) -> int
"""Sphinx build "make mode" entry."""
from sphinx import make_mode
from sphinx.cmd import make_mode
return make_mode.run_make_mode(argv[1:])

View File

@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
"""
sphinx.make_mode
~~~~~~~~~~~~~~~~
sphinx.cmd.make_mode
~~~~~~~~~~~~~~~~~~~~
sphinx-build -M command-line handling.