diff options
Diffstat (limited to 'sphinx/quickstart.py')
-rw-r--r-- | sphinx/quickstart.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sphinx/quickstart.py b/sphinx/quickstart.py index 184c25cb..5d1edfbf 100644 --- a/sphinx/quickstart.py +++ b/sphinx/quickstart.py @@ -43,7 +43,7 @@ from sphinx.util import texescape # function to get input from terminal -- overridden by the test suite term_input = input -DEFAULT_VALUE = { +DEFAULT_VALUES = { 'path': '.', 'sep': False, 'dot': '_', @@ -55,7 +55,7 @@ DEFAULT_VALUE = { 'ext_doctest': False, 'makefile': True, 'batchfile': True, - } +} EXTENSIONS = ('autodoc', 'doctest', 'intersphinx', 'todo', 'coverage', 'pngmath', 'mathjax', 'ifconfig', 'viewcode') @@ -1475,7 +1475,7 @@ def main(argv=sys.argv): 'version' in d]): # quiet mode with all required params satisfied, use default d.setdefault('release', d['version']) - d2 = DEFAULT_VALUE.copy() + d2 = DEFAULT_VALUES.copy() d2.update(dict(("ext_"+ext, False) for ext in EXTENSIONS)) d2.update(d) d = d2 |