Skip to content

Commit 8629683

Browse files
committed
Point correctly to stylesheet
1 parent 7e51c3b commit 8629683

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

pycco/generate_index.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,10 @@ def generate_index(files, outdir):
6565
index of all files.
6666
"""
6767
tree = build_tree(files, outdir)
68-
css_path = path.join(outdir, "pycco.css")
6968

7069
rendered = pycco_template({
7170
"title": 'Index',
72-
"stylesheet": css_path,
71+
"stylesheet": 'pycco.css',
7372
"sections": {'docs_html': generate_tree_html(tree)},
7473
"source": '',
7574
})

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="Pycco",
5-
version="0.4",
5+
version="0.4.1",
66
description="""A Python port of Docco: the original quick-and-dirty,
77
hundred-line-long, literate-programming-style documentation generator.
88
""",

0 commit comments

Comments
 (0)