diff options
author | Adam Turner <9087854+AA-Turner@users.noreply.github.com> | 2022-06-16 21:05:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-16 21:05:37 +0100 |
commit | ce31e1c0c7b32f6be93186e0fef076ef65ff0b05 (patch) | |
tree | 7365b3ac8bb21c5ecee71596ad56f680527efd78 /sphinx/cmd/quickstart.py | |
parent | 7e68154e49fbb260f7ffee9791bfafdb7fd2e119 (diff) | |
download | sphinx-git-ce31e1c0c7b32f6be93186e0fef076ef65ff0b05.tar.gz |
Remove deprecated items for Sphinx 6.0 (#10471)
Diffstat (limited to 'sphinx/cmd/quickstart.py')
-rw-r--r-- | sphinx/cmd/quickstart.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/cmd/quickstart.py b/sphinx/cmd/quickstart.py index 5e9c2b470..47853c90d 100644 --- a/sphinx/cmd/quickstart.py +++ b/sphinx/cmd/quickstart.py @@ -376,7 +376,7 @@ def generate(d: Dict, overwrite: bool = True, silent: bool = False, templatedir: if template._has_custom_template('quickstart/master_doc.rst_t'): msg = ('A custom template `master_doc.rst_t` found. It has been renamed to ' '`root_doc.rst_t`. Please rename it on your project too.') - print(colorize('red', msg)) # RemovedInSphinx60Warning + print(colorize('red', msg)) write_file(masterfile, template.render('quickstart/master_doc.rst_t', d)) else: write_file(masterfile, template.render('quickstart/root_doc.rst_t', d)) |