Skip to content

Commit

Permalink
Merge pull request #209 from sarah256/docs
Browse files Browse the repository at this point in the history
Remove unicode notation in front of strings because unicode_literals is imported
  • Loading branch information
mprahl committed Oct 12, 2018
2 parents abdb26d + 2bd4a8a commit ce1151d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@
version = pkg_resources.get_distribution('estuary').version
except pkg_resources.DistributionNotFound:
version = 'unknown'
project = u'Estuary API'
copyright = year + u', Matt Prahl, Yash Nanavati, Sarah Rieger'
author = u'Matt Prahl, Yash Nanavati, Sarah Rieger'
project = 'Estuary API'
copyright = year + ', Matt Prahl, Yash Nanavati, Sarah Rieger'
author = 'Matt Prahl, Yash Nanavati, Sarah Rieger'
# The full version, including alpha/beta/rc tags
release = u''
release = ''


# -- General configuration ---------------------------------------------------
Expand Down Expand Up @@ -80,7 +80,7 @@
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path .
exclude_patterns = [u'_build', 'Thumbs.db', '.DS_Store']
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']

# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'
Expand Down Expand Up @@ -145,8 +145,8 @@
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'EstuaryAPI.tex', u'Estuary API Documentation',
u'Matt Prahl, Yash Nanavati, Sarah Rieger', 'manual'),
(master_doc, 'EstuaryAPI.tex', 'Estuary API Documentation',
'Matt Prahl, Yash Nanavati, Sarah Rieger', 'manual'),
]


Expand All @@ -155,7 +155,7 @@
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, 'estuaryapi', u'Estuary API Documentation',
(master_doc, 'estuaryapi', 'Estuary API Documentation',
[author], 1)
]

Expand All @@ -166,7 +166,7 @@
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'EstuaryAPI', u'Estuary API Documentation',
(master_doc, 'EstuaryAPI', 'Estuary API Documentation',
author, 'EstuaryAPI', 'One line description of project.',
'Miscellaneous'),
]
Expand Down

0 comments on commit ce1151d

Please sign in to comment.