summaryrefslogtreecommitdiff
path: root/sphinx/make_mode.py
diff options
context:
space:
mode:
Diffstat (limited to 'sphinx/make_mode.py')
-rw-r--r--sphinx/make_mode.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/sphinx/make_mode.py b/sphinx/make_mode.py
index bb9a7d499..7d239f51c 100644
--- a/sphinx/make_mode.py
+++ b/sphinx/make_mode.py
@@ -32,7 +32,7 @@ proj_name = os.getenv('SPHINXPROJ', '<project>')
BUILDERS = [
("", "html", "to make standalone HTML files"),
("", "dirhtml", "to make HTML files named index.html in directories"),
- ("", "singlehtml","to make a single large HTML file"),
+ ("", "singlehtml", "to make a single large HTML file"),
("", "pickle", "to make pickle files"),
("", "json", "to make JSON files"),
("", "htmlhelp", "to make HTML files and a HTML help project"),
@@ -41,7 +41,7 @@ BUILDERS = [
("", "epub", "to make an epub"),
("", "latex", "to make LaTeX files, you can set PAPER=a4 or PAPER=letter"),
("posix", "latexpdf", "to make LaTeX files and run them through pdflatex"),
- ("posix", "latexpdfja","to make LaTeX files and run them through platex/dvipdfmx"),
+ ("posix", "latexpdfja", "to make LaTeX files and run them through platex/dvipdfmx"),
("", "text", "to make text files"),
("", "man", "to make manual pages"),
("", "texinfo", "to make Texinfo files"),
@@ -78,7 +78,7 @@ class Make(object):
shutil.rmtree(self.builddir_join(item))
def build_help(self):
- print(bold("Sphinx v%s" % sphinx.__version__))
+ print(bold("Sphinx v%s" % sphinx.__display_version__))
print("Please use `make %s' where %s is one of" % ((blue('target'),)*2))
for osname, bname, description in BUILDERS:
if not osname or os.name == osname: