openstack-doc-test: Fix index.html

Remove www pages from index, we have the index file for it.

Change-Id: Ic06c5708f888a3ab7fb678f845d36dd599461dd1
This commit is contained in:
Andreas Jaeger 2015-05-08 10:05:39 +02:00
parent 5da924da65
commit 4282827471
2 changed files with 4 additions and 2 deletions

View File

@ -6,7 +6,8 @@ Release notes
* ``openstack-doc-test``: Do not build Debian Install Guide by
default, built it only if the parameter ``--enable-debian-install``
is passed.
is passed. Fix index.html file and remove
www files that came in by accident.
0.26
----

View File

@ -1243,7 +1243,8 @@ def generate_index_file():
for root, dirs, files in os.walk(publish_path):
dirs[:] = [d for d in dirs if d not in ['common', 'webapp', 'content']]
dirs[:] = [d for d in dirs if d not in ['common', 'webapp', 'content',
'www']]
# Ignore top-level index.html files
if root == publish_path: