diff options
Diffstat (limited to 'sphinx/cmd/quickstart.py')
-rw-r--r-- | sphinx/cmd/quickstart.py | 8 |
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:')) |