Doc checkup

This commit is contained in:
Brad Warren
2016-04-14 13:44:12 -07:00
parent 21173e2353
commit 6daa2dd042
27 changed files with 54 additions and 64 deletions
+3 -3
View File
@@ -21,7 +21,7 @@ import sys
here = os.path.abspath(os.path.dirname(__file__))
# read version number (and other metadata) from package init
init_fn = os.path.join(here, '..', 'letsencrypt', '__init__.py')
init_fn = os.path.join(here, '..', 'certbot', '__init__.py')
with codecs.open(init_fn, encoding='utf8') as fd:
meta = dict(re.findall(r"""__([a-z]+)__ = '([^']+)""", fd.read()))
@@ -277,9 +277,9 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'letsencrypt', u'Let\'s Encrypt Documentation',
('index', 'certbot', u'Let\'s Encrypt Documentation',
[project], 7),
('man/letsencrypt', 'letsencrypt', u'letsencrypt script documentation',
('man/certbot', 'certbot', u'certbot script documentation',
[project], 1),
]