Use double quotes for author name fields

This is meant to handle errors caused when the author name
contains punctuation i.e apostrophes
This commit is contained in:
Kevin Ndung'u 2015-02-09 13:32:31 +03:00
parent e18b4271b6
commit 3649a2939e

View File

@ -42,7 +42,7 @@ master_doc = 'index'
# General information about the project.
project = u'{{ cookiecutter.project_name }}'
copyright = u'{{ cookiecutter.year }}, {{ cookiecutter.author_name }}'
copyright = u"{{ cookiecutter.year }}, {{ cookiecutter.author_name }}"
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@ -187,7 +187,7 @@ latex_documents = [
('index',
'{{ cookiecutter.repo_name }}.tex',
u'{{ cookiecutter.project_name }} Documentation',
u'{{ cookiecutter.author_name }}', 'manual'),
u"{{ cookiecutter.author_name }}", 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@ -217,7 +217,7 @@ latex_documents = [
# (source start file, name, description, authors, manual section).
man_pages = [
('index', '{{ cookiecutter.repo_name }}', u'{{ cookiecutter.project_name }} Documentation',
[u'{{ cookiecutter.author_name }}'], 1)
[u"{{ cookiecutter.author_name }}"], 1)
]
# If true, show URL addresses after external links.
@ -231,7 +231,7 @@ man_pages = [
# dir menu entry, description, category)
texinfo_documents = [
('index', '{{ cookiecutter.repo_name }}', u'{{ cookiecutter.project_name }} Documentation',
u'{{ cookiecutter.author_name }}', '{{ cookiecutter.project_name }}',
u"{{ cookiecutter.author_name }}", '{{ cookiecutter.project_name }}',
'{{ cookiecutter.description }}', 'Miscellaneous'),
]