summaryrefslogtreecommitdiff
path: root/sphinx/cmd/quickstart.py
diff options
context:
space:
mode:
Diffstat (limited to 'sphinx/cmd/quickstart.py')
-rw-r--r--sphinx/cmd/quickstart.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/sphinx/cmd/quickstart.py b/sphinx/cmd/quickstart.py
index 76e9254fb..d7465b731 100644
--- a/sphinx/cmd/quickstart.py
+++ b/sphinx/cmd/quickstart.py
@@ -395,13 +395,6 @@ def generate(d, overwrite=True, silent=False, templatedir=None):
d['project_doc_texescaped'] = (d['project'] + ' Documentation').\
translate(texescape.tex_escape_map)
- # escape backslashes and single quotes in strings that are put into
- # a Python string literal
- for key in ('project', 'project_doc', 'project_doc_texescaped',
- 'author', 'author_texescaped', 'copyright',
- 'version', 'release', 'master'):
- d[key + '_str'] = d[key].replace('\\', '\\\\').replace("'", "\\'")
-
ensuredir(d['path'])
srcdir = d['sep'] and path.join(d['path'], 'source') or d['path']