summaryrefslogtreecommitdiff
path: root/sphinx/cmd/quickstart.py
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2018-01-31 20:43:54 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2018-08-05 08:16:00 +0900
commitf47f2353d38a23c152c8d4f8cafaa59c2af58a03 (patch)
tree25fb0545eee09fdd343671c5b9a9943e7249dcd9 /sphinx/cmd/quickstart.py
parente5a3f67cf7d4fa4a11dfe5c6571779458e8122ee (diff)
downloadsphinx-git-f47f2353d38a23c152c8d4f8cafaa59c2af58a03.tar.gz
quickstart: epub builder is enabled by default
Diffstat (limited to 'sphinx/cmd/quickstart.py')
-rw-r--r--sphinx/cmd/quickstart.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/sphinx/cmd/quickstart.py b/sphinx/cmd/quickstart.py
index 14217d1a7..6b003c926 100644
--- a/sphinx/cmd/quickstart.py
+++ b/sphinx/cmd/quickstart.py
@@ -74,7 +74,6 @@ DEFAULTS = {
'language': None,
'suffix': '.rst',
'master': 'index',
- 'epub': False,
'makefile': True,
'batchfile': True,
}
@@ -246,7 +245,6 @@ def ask_user(d):
* language: document language
* suffix: source file suffix
* master: master document name
- * epub: use epub (bool)
* extensions: extensions to use (list)
* makefile: make Makefile
* batchfile: make command file
@@ -347,12 +345,6 @@ document is a custom template, you can also set this to another filename.'''))
d['master'] = do_prompt(__('Please enter a new file name, or rename the '
'existing file and press Enter'), d['master'])
- if 'epub' not in d:
- print(__('''
-Sphinx can also add configuration for epub output:'''))
- d['epub'] = do_prompt(__('Do you want to use the epub builder (y/n)'),
- 'n', boolean)
-
if 'extensions' not in d:
print(__('Indicate which of the following Sphinx extensions should be '
'enabled:'))