|
12 | 12 | # serve to show the default. |
13 | 13 |
|
14 | 14 | import sys, os |
| 15 | +import six |
15 | 16 |
|
16 | 17 | # If extensions (or modules to document with autodoc) are in another directory, |
17 | 18 | # add these directories to sys.path here. If the directory is relative to the |
|
41 | 42 | master_doc = 'index' |
42 | 43 |
|
43 | 44 | # General information about the project. |
44 | | -project = u'pygithub3' |
45 | | -copyright = u'2012, David Medina' |
| 45 | +project = six.u('pygithub3') |
| 46 | +copyright = six.u('2012, David Medina') |
46 | 47 |
|
47 | 48 | # The version info for the project you're documenting, acts as replacement for |
48 | 49 | # |version| and |release|, also used in various other places throughout the |
|
189 | 190 | # Grouping the document tree into LaTeX files. List of tuples |
190 | 191 | # (source start file, target name, title, author, documentclass [howto/manual]). |
191 | 192 | latex_documents = [ |
192 | | - ('index', 'pygithub3.tex', u'pygithub3 Documentation', |
193 | | - u'David Medina', 'manual'), |
| 193 | + ('index', 'pygithub3.tex', six.u('pygithub3 Documentation'), |
| 194 | + six.u('David Medina'), 'manual'), |
194 | 195 | ] |
195 | 196 |
|
196 | 197 | # The name of an image file (relative to this directory) to place at the top of |
|
219 | 220 | # One entry per manual page. List of tuples |
220 | 221 | # (source start file, name, description, authors, manual section). |
221 | 222 | man_pages = [ |
222 | | - ('index', 'pygithub3', u'pygithub3 Documentation', |
223 | | - [u'David Medina'], 1) |
| 223 | + ('index', 'pygithub3', six.u('pygithub3 Documentation'), |
| 224 | + [six.u('David Medina')], 1) |
224 | 225 | ] |
225 | 226 |
|
226 | 227 | # If true, show URL addresses after external links. |
|
233 | 234 | # (source start file, target name, title, author, |
234 | 235 | # dir menu entry, description, category) |
235 | 236 | texinfo_documents = [ |
236 | | - ('index', 'pygithub3', u'pygithub3 Documentation', |
237 | | - u'David Medina', 'pygithub3', 'One line description of project.', |
| 237 | + ('index', 'pygithub3', six.u('pygithub3 Documentation'), |
| 238 | + six.u('David Medina'), 'pygithub3', 'One line description of project.', |
238 | 239 | 'Miscellaneous'), |
239 | 240 | ] |
240 | 241 |
|
|
0 commit comments